I have two int
variables, abdou1
and abdou2
, I wish to print the values of these. I have tried below which does not work.
public class Math1 {
public static void main (String args[]) {
int abdou1 = 115;
double abdou2 = 1122.176876;
System.out.println(abdou1, abdou2);
}
}