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
| 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
| #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
| #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; | |
| 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> //Entrada e Saída Padrão! |
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 <biblioteca.h> //Para bibliotecas do sistema | |
| #include "biblioteca.h" //Para bibliotecas locais |
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
| cd pasta | |
| Muda o seu diretório pelo terminal. Para visualizar pasta e arquivos | |
| utilize o LS! | |
| ls | |
| Exibe uma lista dos arquivos e pastas. | |
| gcc algoritmo.c -o programa | |
| Compila o arquivo algoritmo.c e resultara no arquivo programa.o |
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
| X = 8 |
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
| 15 | |
| -7 |