Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include<stdlib.h>
- int main() {
- int n,i;
- printf("Por favor,digite o numero:");
- scanf("%d", &n);
- printf("\nAgora,olhe sua tabuada:\n");
- for(i=1;i<=10;i++) {
- printf("%d x %d = %d \n",n,i,i*n);
- }
- printf("\nBacana neh!!!\nAte a proxima!\n");
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment