题目描述
循环加选择判断,这题耗费了不少精力。
样例
#include<iostream>
using namespace std;
int main()
{
int max=0,i,x,y;
for(i=1;i<=100;i++)
{
cin>>x;
if(x>max)
{
max=x;
y=i;
}
}
cout<<max<<endl;
cout<<y<<endl;
return 0;
}