LoginSignup
0
0

More than 5 years have passed since last update.

AOJ 0000;QQ 解答

Posted at

public class Main{
public static void main(String[ ]args){

int k = 0;
for(int i = 1 ; i<10 ;i++){
for(int j = 1 ; j < 10 ; j++){
k = i * j;

System.out.println(i + "x" + j + "=" + k);
}
}
}
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0