【程式語言】JAVA的第四堂課 |直角三角形
Published:
by .public class hw3 {
public static void main(String[] args) {
for(int i = 1 ; i <= 5 ;i++) {
for(int j = 1; j <= i ; j++) {
System.out.print(j);
}
System.out.println("");
}
}
}