Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int numero, i;
- printf("Entre com o numero:");
- scanf("%d", &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