我的学校还有另一项任务,它是:
编写一个程序,从三个输入的数字中输出最大的数字
到目前为止,我已经这样做了:
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int* numbers = new int[3];
for(int i = 0; i < 3; i++) {
cout << "Input number no. " << (i + 1);
cin >> numbers[i];
cout << endl;
}
system("PAUSE");
return EXIT_SUCCESS;
}
C++ 中是否有一个辅助函数/方法可以在我的numbers
数组中找到最大的数字?