how can i print these numbers in this order?
123456
12345
1234
123
12
1
my answer
for i = 6 to 1 step -1
for j = 1 to i
print j;
next j
next i
plz check my answer anf if there any wrong tell me and write the right answer?
Printable View
how can i print these numbers in this order?
123456
12345
1234
123
12
1
my answer
for i = 6 to 1 step -1
for j = 1 to i
print j;
next j
next i
plz check my answer anf if there any wrong tell me and write the right answer?
It's ok, I assume you didn't have the chance to check by yourself?Quote:
Originally Posted by just_info