Error : Too few Arguments to Function 'Fdelta'

Asked

Viewed 670 times

-2

When I try to declare a function there is error Too few Arguments to Function 'Fdelta' which could be?

inserir a descrição da imagem aqui

  • Could you copy the code? So we could test it

1 answer

0


Watching your code, realized that you declared the function Fdelta() receiving 3 parameters inteiros, and when you will use you are not passing the parameters, this error refers to missing parameters in the function Fdelta(), for you to solve, put: Fdelta(A, B, C);, so you will be passing the values of A, B and C as a parameter for the function.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.