Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
public class mathops{
/*
name
class
date
assignment
purpose
*/
public static void main(String[] args) {
/*
place variables here
*/
double x ,y , z;
int i;
TextIO.putln("type in the first number ");
x = TextIO.getDouble();
TextIO.putln("type in the second number ");
y = TextIO.getDouble();
z = Math.pow(x,y);
System.out.println(" the value is "+z);
z = x % y;
System.out.println(" the remainder is "+z);
i = (int) (Math.random() * 100);
System.out.println(" the random number is "+i);
} // end of main()
}