Advertisement
Guest User

Untitled

a guest
Oct 26th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3. int main()
  4. {
  5. int n, a;
  6. printf("Ingrese numero para hallar tabla de multiplicar: ");
  7. scanf("%d",&n);
  8. for(a=1;a<=10;a++)
  9. {
  10. printf("%d * %d = %d\n", n, a, n*a);
  11. }
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement