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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Digitalização de Documentos</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<link rel="stylesheet" type="text/css" href="stylebassoli.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> |
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> | |
#include <locale.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
#include <conio.h> | |
int espaco(); | |
int fatorial(int n); | |
int main() |
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> | |
#include <math.h> | |
#include <locale.h> | |
#include <stdlib.h> | |
#include <conio.h> | |
int fatorial(int n); | |
int espaco(); | |
int main() | |
{ |
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> | |
#include <locale.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
int espaco(); | |
int main(){ | |
int num, num1,num2; | |
setlocale(LC_ALL,"Portuguese"); | |
system("color 0A"); |
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> | |
#include <locale.h> | |
#include <math.h> | |
int caixa(); | |
int linha(); | |
int main(){ | |
char nome[100], sobre[100]; | |
float peso, meta; | |
int idade,exer,num; | |
setlocale(LC_ALL,"Portuguese"); |
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> | |
#include <locale.h> | |
#include <math.h> | |
int main(int argc , char ** argv){ | |
setlocale(LC_ALL, "Portuguese"); | |
char nome[100]; | |
int esc,i, j, num, dogo, k, rows; | |
float quadrado, cubo, raiz_quad, raiz_cub; | |
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> | |
#include <locale.h> | |
#include <math.h> | |
float mediaaluno (float nota1,float nota2); | |
int main(int argc, char ** argv){ | |
int sem; | |
char name[100]; | |
float nota1, nota2, media; | |
setlocale(LC_ALL, "Portuguese"); | |
printf("\nEscolha o nome do aluno\n"); |
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> | |
#include <locale.h> | |
#include <math.h> | |
float mediaaluno (float nota1,float nota2); | |
int main(int argc, char ** argv){ | |
char name[100]; | |
float nota1, nota2, media; | |
setlocale(LC_ALL, "Portuguese"); | |
printf("\nEscolha o nome do aluno\n"); | |
scanf("%s", &name); |
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> | |
#include <locale.h> | |
#include <math.h> | |
int main(int argc, char * argv[]){ | |
setlocale(LC_ALL, "Portuguese"); | |
int peso1, peso2; | |
float media, nota1, nota2; | |
printf("\nQuanto você tirou na primeira prova?\n"); | |
scanf("%f", ¬a1); |
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> | |
#include <locale.h> | |
int main(int argc, char ** argv){ | |
setlocale(LC_ALL, "Portuguese"); | |
int num1, i , j; | |
printf("\nEscolha uma das tabuadas abaixo:\n"); | |
printf("Tabuada do 1\n"); | |
printf("Tabuada do 2\n"); | |
printf("Tabuada do 3\n"); |