4個の整数を入力し、最大値と最小値を出力します.
576 ワード
/*
* Copyright (c) 2011,
* All rights reserved.
* :test.cpp
* :
* :2012 10 14
* :v1.0
*
* : 4 ,
* : 4 ,
* :“ ”
* :
* :
#include
using namespace std;
int main()
{
int a,b,c,d,max1,max2,max,min1,min2,min;
cout<>a>>b>>c>>d;
if(a>b)
max1=a,min1=b;
else
max1=b,min1=a;
if(c>d)
max2=c,min2=d;
else
max2=d,min1=c;
if(max1>max2,min1
実行結果:
心得:
まだたくさんの問題があって、引き続き深く入り込む価値があります