Division
import java.util.*;
class divide
{
public static void
main(String args[])
{
Scanner sc = new
Scanner(System.in);
int a,b,c;
System.out.println("Enter
a number");
a=sc.nextInt();
System.out.println("Enter
another number");
b=sc.nextInt();
c=a/b;
System.out.println("Quotient
of "+a+" and " +b+ " is " +c);
}
}
No comments:
Post a Comment