Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- int main(){
- int i,j,tabuada;
- for(i=1;i<=10;i++){
- tabuada=0;
- for(j=1;j<=10;j++){
- tabuada=i*j;
- printf("%d x%d = %d\t",i,j,tabuada);
- }
- printf("\n");
- }
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment