程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> NYoj-5個數求最值

NYoj-5個數求最值

編輯:C++入門知識

NYoj-5個數求最值


5個數求最值

時間限制:1000 ms | 內存限制:65535 KB 難度:1
描述
設計一個從5個整數中取最小數和最大數的程序
輸入
輸入只有一組測試數據,為五個不大於1萬的正整數
輸出
輸出兩個數,第一個為這五個數中的最小值,第二個為這五個數中的最大值,兩個數字以空格格開。
樣例輸入
1 2 3 4 5
樣例輸出
1 5
 
#include
#include
using namespace std;
int main(){
	int a[5],i;
	for(i=0; i<5; i++){
		cin>>a[i];
	}
	cout<<*min_element(a,a+5)<<" "<<*max_element(a,a+5)<

#include
#include
#include
using namespace std;
int main(){
	int a[5];
	for(int i=0; i<5; i++)
		cin>>a[i];
	vectorv(a,a+5);//將數組轉換為不定長數組vector 
	cout<<*min_element(v.begin(),v.end())<<" ";
	cout<<*max_element(v.begin(),v.end())<


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved