Jump to content

Pequena dúvida


edurocks

Recommended Posts

Tens alguns erros de sintaxe:

float funcao (int n)
{
float s;
int i;
s=0;
for (i=1;i<=n;i++)
  s=s+i/(n-i+1);
return(s);
}

Depois na função main é só chamares a função com um parâmetro:

main()
{
...
float num1=0.0;
int num2=5;

num1 = funcao(num2);

}

"Nunca discutas com um idiota. Eles arrastam-te até ao seu nível e depois ganham-te em experiência"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.