- Iii Programming 30 1 Fill In The Blanks To Finish The Program According To The Annotation 10 Include Iostrea 1 (36.94 KiB) Viewed 13 times
III, programming (30') 1. Fill in the blanks to finish the program, according to the annotation. (10') #include
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
III, programming (30') 1. Fill in the blanks to finish the program, according to the annotation. (10') #include
III, programming (30') 1. Fill in the blanks to finish the program, according to the annotation. (10') #include <iostream> using namespace std; // Prototype void main() { double a, b, c, ml, m2; cout << "input a, b, c:\n"; cin >> a >> b >> c; ml = max(a, b); m2 = max( ml, c); cout << "Maximum = } { if (x>y) return x; else return y; } // function call << m2 << endl; // definition