fork download
  1. #include<stdio.h>
  2.  
  3. void multiplication(int a) {
  4. int i;
  5. printf("la table de multiplication du %d est:\n",a);
  6. for(i=0;i<=10;i++){
  7. printf("%d x %d = %d \n",a,i,a*i);
  8. }
  9. }
  10. main() {
  11. int N;
  12. printf("entrer votre valeur:");
  13. scanf("%d",&N);
  14. multiplication(N);
  15. }
Success #stdin #stdout 0s 5468KB
stdin
Standard input is empty
stdout
entrer votre valeur:la table de multiplication du 32765 est:
32765 x 0 = 0 
32765 x 1 = 32765 
32765 x 2 = 65530 
32765 x 3 = 98295 
32765 x 4 = 131060 
32765 x 5 = 163825 
32765 x 6 = 196590 
32765 x 7 = 229355 
32765 x 8 = 262120 
32765 x 9 = 294885 
32765 x 10 = 327650