Rewrite the following program using for loop:
x=5
while x<10:
print(x+10)
x+=2
ma5203443:
hii
Answers
Answered by
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
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