#include<stdio.h>
#include<conio.h>
#define s scanf
#define p printf
int main()
{
int x, y;
for(x=2; x <=4; x++);
for (y = 5; y>= 3; y--);
p("%d\n",x+y);
getch();
return 0;
}
#include<conio.h>
#define s scanf
#define p printf
int main()
{
int x, y;
for(x=2; x <=4; x++);
for (y = 5; y>= 3; y--);
p("%d\n",x+y);
getch();
return 0;
}
0 comments:
Post a Comment