Exercício em C, Criar uma função que retorna o seguinte: A função recebe 3 valores float e retornar o quadrado do 1º + a soma dos outros dois. Vai retornar o tipo inteiro.
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
float calcula (float x, float y, float z)
{
return (pow(x,2)+(y+z));
}
main()
{
printf("Resultado: %3.2f\n", calcula(2,3,4));
printf("\n\n");
system("pause");
return(0);
}
Trabalhos.:
E-mail: mvf5system@gmail.com
Blog: http://mvf5-system.blogspot.com.br/
Facebook: https://www.facebook.com/mvf5systems
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
float calcula (float x, float y, float z)
{
return (pow(x,2)+(y+z));
}
main()
{
printf("Resultado: %3.2f\n", calcula(2,3,4));
printf("\n\n");
system("pause");
return(0);
}
Trabalhos.:
E-mail: mvf5system@gmail.com
Blog: http://mvf5-system.blogspot.com.br/
Facebook: https://www.facebook.com/mvf5systems