5. Calculate the maximum number.

Source: Internet
Author: User
5. Calculate the maximum number.

Description

Design a program for getting the minimum and maximum numbers from five Integers

 
Input
The input contains only one set of test data, which is five positive integers not greater than 10 thousand.
Output
Output two numbers. The first is the minimum value of the five numbers, the second is the maximum value of the five numbers, and the two numbers are open in an empty space.
Sample Input
1 2 3 4 5
Sample output
1 5

 #include<iostream>using namespace std;int main(){    int temp = 0;    int arr[5];    for(int i=0;i<5;i++)        cin>>arr[i];    for(int i=0;i<5;i++){        for(int j=0;j<4-i;j++){            if(arr[j]>arr[j+1])            {                temp = arr[j];                arr[j] = arr[j+1];                arr[j+1] = temp;            }        }    }    cout<<arr[0]<<" "<<arr[4]<<endl;    return 0;}        

 

5. Calculate the maximum number.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.