码迷,mamicode.com
首页 > 其他好文 > 详细

题目1046:求最大值---------------此题较为水,但是仍然有需要注意的地方,原来可以这么输入!!!!

时间:2017-02-26 23:38:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:数字   iostream   个数   cout   bsp   turn   clu   str   names   

此题,无需输入N,只是简单的输入是个数字,

刚开始的时候,

WA的代码:

#include<iostream>
using namespace std;

int main()
{
	int tem;
	int max=0;	
	while(1)
	{ 	    
		for (int i=0;i<10;i++)
		 {
		 cin>>tem;
		 if (max<tem) max=tem;
		 }
		 cout<<"max="<<max<<endl; 
	}
	return 0;
}

while(1)是超出时间限制的问题

换成while(cin>>max)的就可以了。

AC的代码:

 #include<iostream>
using namespace std;

int main()
{
	int tem;
	int max=0;	
	while(cin>>max)
	{ 	    
		for (int i=1;i<10;i++)
		 {
		 cin>>tem;
		 if (max<tem) max=tem;
		 }
		 cout<<"max="<<max<<endl; 
	}
	return 0;
}

  

 

题目1046:求最大值---------------此题较为水,但是仍然有需要注意的地方,原来可以这么输入!!!!

标签:数字   iostream   个数   cout   bsp   turn   clu   str   names   

原文地址:http://www.cnblogs.com/jianrenguo/p/6457876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!