예제 #1
0
void main() {

float seg;


scanf("%f",&seg);

conversao(seg);


}
예제 #2
0
파일: pot2.c 프로젝트: kubota/CRepo
main()
{
	int fahr, celsius;
	int inicio, fim, incr;

	inicio = 0; /* limite inferior da tabela*/
	fim = 300;	/* limite superior */
	incr = 20;	/* incremento */

	fahr = inicio;
	while( fahr <= fim ) {
		celsius = conversao( fahr );
		printf("%d\t%d\n", fahr, celsius);
		fahr = fahr + incr;
	}
}