Computer Science, asked by chetnasaini7327, 9 months ago

write a program write a program to print the table of 3

Answers

Answered by devraj67613
1

Answer:

input a

x:

if a =<30 then

a+1

print a

goto x

Answered by sahil10august
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