+ 1
Can anyone write a pseudocode for this pattern? 1 12 123 1234 12345 with line break?
pseudocode
3 Respostas
+ 4
for(int i=1;i<=5;i++){
for(int j=1;j<=i;j++){
System.out.print(j);
}
System.out.println();
}
+ 1
I don't know what you mean :-(
0
thanks but can you provide me the pseudocode for desk checking?
i am a begineer and i dont know how this works.