วันพุธที่ 16 พฤศจิกายน พ.ศ. 2559

C++ หาค่ามากที่สุดที่อันดับที่สอง


int n[10];
int max = -pow(2, 31);
for (int i = 0; i<10; i++)
{
cout << "Input #" << i + 1 << " : ";
cin >> n[i];
}
for (int i = 0; i<10; i++)
{
if (n[i]>max)
{
max = i;
}
}
cout << endl;
cout << n[max] << endl;


ไม่มีความคิดเห็น:

แสดงความคิดเห็น