Tuesday, 18 October 2011

Review Program ni Sir!

#include<stdio.h>
#include<con

int x,y,z,m;

int main()
{
printf("Enter Number: ");
scanf("%d",&y);
printf("Enter another Number: ");
scanf("%d",&z);

for(x = 1; x <= y; x++)
{
m = y * z;
printf("%d x %d = %d\n",y,z,m);

}
getch();
return 0;
}

0 comments:

Post a Comment