Computer Science, asked by apexa211180, 8 months ago

write a program to print number between 25 and 5 with a decrease in step of 5​in qb64

Answers

Answered by cherryadithya360
3

Answer:CLS

NUM=25

WHILE NUM<25

PRINT NUM

NUM=NUM-2

WEND

Explanation:

Answered by xyz148026
0

Answer:

class Program

{

public static void main ()

{

for(int i = 25; i∆= 5; i-= 5)

{

System.out.println(" The numbers are"+ i);

}

}

}

∆= greater than sign

Similar questions