JavaAlgorithms/Others/ft.java

18 lines
480 B
Java
Raw Normal View History

2017-06-16 19:17:35 +08:00
import java.util.Scanner;
2017-07-08 09:24:45 +08:00
class FloydTriangle {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of rows which you want in your Floyd Triangle: ");
int r = sc.nextInt(), n = 0;
for(int i=0; i < r; i++) {
for(int j=0; j <= i; j++) {
System.out.print(++n + " ");
}
System.out.println();
}
}
2017-06-16 19:17:35 +08:00
}