Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int i,token;
- printf("Digite o numero a ser exibida a tabuada :\n");
- scanf("%d",&token);
- for (i = 1; i < 11; i++)
- {
- printf("%d x %d = %d\n",token,i,token*i);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment