Code:
float promedi(a,b)
{
return ((a+b)/2);
}
main()
{
float x,y;
printf("Dame dos valores\n");
scanf("%f%f", &x, &y);
printf("%f",promedi(x,y));
system("pause");
}
Thanks in advance.
|
Go4Expert Member
|
|
| 6Dec2007,04:45 | #1 |
|
Hello, i'm going mad because I can't find the problem in this simple code. Why do this don't work?
Code:
float promedi(a,b)
{
return ((a+b)/2);
}
main()
{
float x,y;
printf("Dame dos valores\n");
scanf("%f%f", &x, &y);
printf("%f",promedi(x,y));
system("pause");
}
Thanks in advance. Last edited by shabbir; 6Dec2007 at 09:43.. Reason: Code block |
|
Go4Expert Member
|
|
| 6Dec2007,05:30 | #2 |
|
When it says 'Dame dos valores' it means tell me two numbers.
|
|
Go4Expert Founder
|
![]() |
| 6Dec2007,09:44 | #3 |
|
Duplicate of Where is the simple error?. Thread closed.
|