Computer Science, asked by zirconium235, 5 months ago

Rewrite the following program using for loop:
x=5
while x<10:
print(x+10)
x+=2


ma5203443: hii
zirconium235: do you know the answer
ma5203443: no please teal me

Answers

Answered by vamsitallapudi000
0

Answer:

/* c program */

#include<studio.h>

void main()

{

int i,x;

for(i=1;i<10;i++)

{

printf("%d\n",&x);

}

}

Explanation:

hope it helps you

Answered by abirpaul7044562626
0

for(x=5;x<10;x+=2)

{

    System.out.print(x+10);

}

Explanation:

thereby our answer ends:) pls upvote if it helped

Similar questions