Computer Science, asked by lizzysdarling, 2 months ago

write a java program to print the Floyd's triangle of n lines, where n is taken as an input from the user
1
23
456
78910 :
n lines ​

Answers

Answered by harshith5789
1

Answer:

class Floyd.

int n, num = 1, c, d;

Scanner in = new Scanner(System.

System. out. println("Enter the number of rows of floyd's triangle you want");

n = in. nextInt();

System. out. println("Floyd's triangle :-");

for ( c = 1 ; c <= n ; c++ )

for ( d = 1 ; d <= c ; d++

Similar questions