দুইটি সংখ্যার তুলনার প্রোগ্রাম
MULTIPLICATION TABLE ... . 1st input- test case 2nd- give input for multiplication table #include int main () { int a,b,c,j,i; while(scanf("%d",&a)==1) { c=1; for(i=1;i<=a;i++) { scanf("%d",&b); printf("Case : %d\n",c); for(j=1;j<=10;j++) printf("%d*%d=%d\n",b,j,b*j); c++; } } return 0; }
মন্তব্য দেখুন →