Created
March 10, 2015 16:48
-
-
Save mauricioaniche/84aa107071d8b8bf5fcf to your computer and use it in GitHub Desktop.
Tabuada
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
void abertura(int m) { | |
printf("Tabuada do %d\n\n", m); | |
} | |
int main() { | |
int multiplicador = 2; | |
abertura(multiplicador); | |
for(int i = 1; i <= 10; i++) { | |
printf("%d x %d = %d\n", multiplicador, i, multiplicador * i); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is tabuada??