#include <iostream>using std::cout;using std::cin;using std::endl;int check(int, int);int main(){ int a, b, c; cout << "Enter a, b, c: "; cin >> a >> b >> c; cout << "The largest number is " << check(a, check(b, c)) << endl; return 0;}int check(int x, int y){ return x >= y ? x : y;}
Ну а с блок-схемой как-нибудь самостоятельно...
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int check(int, int);
int main()
{
int a, b, c;
cout << "Enter a, b, c: ";
cin >> a >> b >> c;
cout << "The largest number is " << check(a, check(b, c)) << endl;
return 0;
}
int check(int x, int y)
{
return x >= y ? x : y;
}
Ну а с блок-схемой как-нибудь самостоятельно...