You are viewing a single comment's thread. Return to all comments →
public class Solution { public static void main(String[] args) { Scanner scan =new Scanner (System.in);
int N=scan.nextInt(); for (int n=1;n<=10;n++){ System.out.println( N + " X " + n + " = " + n * N ); } }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Loops I
You are viewing a single comment's thread. Return to all comments →
public class Solution { public static void main(String[] args) { Scanner scan =new Scanner (System.in);
}