This file contains hidden or 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> | |
| int main (void){ | |
| // Variáveis! | |
| int a, b, c; | |
| return 0; | |
| } |
This file contains hidden or 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> | |
| int main (void){ | |
| // Variáveis! | |
| int a, b, c; | |
| // Leitura dos Dados! | |
| scanf ("%d %d", &a, &b); | |
| return 0; |
This file contains hidden or 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> | |
| int main (void){ | |
| // Variáveis! | |
| int a, b, c; | |
| // Leitura dos Dados! | |
| scanf ("%d %d", &a, &b); | |
| // Armazenamento dos valores (A+B) em C |
This file contains hidden or 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
| 3 | |
| 4 | |
| 3 | |
| 7 4 | |
| 2 4 6 | |
| 8 5 9 3 | |
| 3 | |
| 1 | |
| 1 1 | |
| 1 1 1 |
This file contains hidden or 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
| 23 | |
| 3 | |
| 161 |
This file contains hidden or 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> | |
| int Mat[100][100] = {0}; | |
| int Sun[100][100] = {0}; | |
| int Tam = 0; | |
| void ResetSun (){ | |
| int i, j; | |
| for (i = 0; i < 100; i++){ | |
| for (j = 0; j < 100; j++){ |
This file contains hidden or 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> | |
| int main (void){ | |
| printf ("OBI na UDESC 2015!"); | |
| printf ("Seja bem vindo!"); | |
| return 0; | |
| } |
This file contains hidden or 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> | |
| int main (void){ | |
| int Quantidade = 0; | |
| scanf ("%d", &Quantidade); | |
| printf ("%d\n",Quantidade); | |
| int Cedulas = ( Quantidade - (Quantidade%100))/100; | |
| printf ("%d nota(s) de R$ 100,00\n", Cedulas); |
This file contains hidden or 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> | |
| int main (void){ | |
| printf ("Ola Mundo!\n"); | |
| return 0; | |
| } |
This file contains hidden or 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> | |
| int main(void){ | |
| // CONDICAO | |
| if ( (2 == 2 || 2==3 || 2 > 3 || 2 < 3) & !(2<1)){ | |
| printf ("Olá mundo\n"); | |
| } | |
| } |