Compare commits
No commits in common. "9c7d01b6208ae4172ddd73035fa73e7ee8204896" and "74fbbf8bb61209b7425090d27a8e134f7dc58164" have entirely different histories.
9c7d01b620
...
74fbbf8bb6
3 changed files with 0 additions and 32 deletions
|
@ -1,12 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int quadrado(int base) {
|
|
||||||
return base * base;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(void) {
|
|
||||||
int num = 5;
|
|
||||||
|
|
||||||
printf("%d^2 = %d\n", num, quadrado(num));
|
|
||||||
return 0;
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
int main(void){
|
|
||||||
int num;
|
|
||||||
|
|
||||||
num = 5;
|
|
||||||
|
|
||||||
printf("%d x 10 = %d\n", num, num *10);
|
|
||||||
return 0;
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#define MULT 10
|
|
||||||
|
|
||||||
int main(void){
|
|
||||||
int num =5;
|
|
||||||
|
|
||||||
printf("%d x 10 = %d\n", num, num * MULT);
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue