- import java.util.Scanner;
- class NineNineBiao
- {
- public static void main(String[] args)
- {
- for(;;){
- Scanner sc=new Scanner(System.in);
- System.out.print("请输入想要打印的表:");
- int temp =sc.nextInt();
- Chengfabiao(temp);}
- }
- public static void Chengfabiao(int temp)
- {
- for (int x = 1;x <= temp ; x++)
- {
- for (int y= 1;y<=x ;y++ )
- {
- System.out.print(y+"*"+x+"="+y*x+"\t");
- }
- System.out.println();
- }
- }
- }
复制代码
|
|