- 4
write c++ program that calculates the averge of two numbers using functions
3 Réponses
+ 1
Ok. Will remember it next time
- 2
Write program that calculates the averge of two numbers using functions c++
- 6
float average(int first,int second) {
return (first+second)/2;
}