Guest User

Untitled

a guest
Jun 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main(void){
  5. int n,i,f;
  6. printf("Escolha um numero\n");
  7. scanf("%d",&n);
  8. i=1;
  9. while(i<=10){
  10. f = n * i;
  11. i= i + 1;
  12. printf(" %d x %d = %.1d\n", i,n,f);
  13. }
  14. system("pause");
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment