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