Tuesday, 18 October 2011

example page 93 # 3

#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;
             }

0 comments:

Post a Comment