Зміст курсу
C++ Intermediate | Mobile-Friendly
C++ Intermediate | Mobile-Friendly
More about Parameters
Multiple parameters can also be used if you want to make math calculations or describe some logic. For example, we want to write the function which will write the average of 2 numbers (sum of numbers divided by its count):
// Declaration of the function, which calculates the mean of 2 numbers void avr(int a, int b) { cout << (a+b)/2 << endl; } int main() { // Call the function to be executed avr(4, 8); avr(3, 5); return 0; }
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 4. Розділ 4