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