Write a java program for division of two number. [Initialization of Variables].
Answers
Answered by
0
Step-by-step explanation:
public class Division
{
public static void main (String args[])
{
int a=10,b=2;
int c=a/b;
System.out.println("The division of " +a+" and "+b+" is = "+c);
}
}
Here you go, but bro don't post CS questions inaths section
Similar questions