write a program write a program to print the table of 3
Answers
Answered by
1
Answer:
input a
x:
if a =<30 then
a+1
print a
goto x
Answered by
1
#include<stdio.h>
int main()
{
int n,t;
printf("Enter No\n");
scanf("%d",&n);
for(t=1;t<=10;t++)
printf("%d*%d=%d\n",n,t,n*t);
return 0;
}
Attachments:
Similar questions