write a program to print number between 25 and 5 with a decrease in step of 5in qb64
Answers
Answered by
3
Answer:CLS
NUM=25
WHILE NUM<25
PRINT NUM
NUM=NUM-2
WEND
Explanation:
Answered by
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