发布网友 发布时间:2022-04-22 07:45
共3个回答
热心网友 时间:2022-06-17 23:57
这是我做过的源代码,送给你了,请采纳:
#include<stdio.h>运行结果:
热心网友 时间:2022-06-17 23:58
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
int i=1,j=0,row;
System.out.print("请输入要打印的行数:");
row=input.nextInt();
while(i<=row){
while(j<=row-1){
System.out.print(j+1);
System.out.print(" ");
j++;
}
//while(j<=row-1){
System.out.print(j+2);
System.out.print(" ");
j++;
/}
System.out.println();
i++;
}
}
热心网友 时间:2022-06-17 23:58
天天去锻炼