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 <stdlib.h> | |
int alfabeto (char letra); | |
int main(){ | |
char letra; | |
printf("Digite uma letra:"); | |
scanf("%c",&letra); | |
if(alfabeto (letra)==1) | |
{ | |
printf("Vogal"); |
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 <stdlib.h> | |
#include <math.h> | |
float function(float x,float y, float z); | |
int main(){ | |
int valor_recebido; | |
float x,y,z; | |
scanf("%f %f %f",&x,&y,&z); | |
valor_recebido=function(x,y,z); | |
printf("o valor eh: %i",valor_recebido); |