All In One
একের ভিতর সব
Wednesday, June 15, 2016
SOLUTION OF URI 1078
// 1078 (Mahmud_Jamil) BRUR
// Multiplication Table
#include<stdio.h>
int main()
{
int i,n;
scanf("%d",&n);
for(i=1;i<=10;i++)
printf("%d x %d = %d\n",i,n,i*n);
return 0;
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment