#Include #Include Int Main (Int A 1, B 1 While (A 10) (B 1 While (B 7) (Printf ("%d/t",a B) B++ ) Printf ("/N") A++ ) Return 0 )

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#include<conio.h>
int main()
{
int a=1,b=1;
while(a<=10)
{
b=1;
while(b<=7)
{
printf("%d\t",a*b);
b++;
}
printf("\n");
a++;
}
return 0;
}

You might also like