Write a program in C++ to asked user to input positive integers to process count, maximum, minimum, and average or terminate the process with -1

  • برمجة سي بلس بلس
  • برمجة

Write a program in C++ to asked user to input positive integers to process count, maximum, minimum, and average or terminate the process with -1

Sample Output:

 Input a positive integers to calculate some processes or -1 to terminate:                                                                      
----------------------------------------------------------------------------                                                                  
 Input positive integer or -1 to terminate: 25                         
 Input positive integer or -1 to terminate: 15                         
 Input positive integer or -1 to terminate: 35                         
 Input positive integer or -1 to terminate: -1                         
                                                                       
 Your input is for termination. Here is the result below:              
 Number of positive integers is: 3                                     
 The maximum value is: 35                                              
 The minimum value is: 15                                              
 The average is 25.00

الأجوبة

#include <iostream>
#include <climits>
#include <iomanip>
using namespace std;

int main()
{
    int posnum, ctr, sum, max = 0;
    int min = INT_MAX;
    int terval = -1;
    cout << "\n\n Input a positive integers to calculate some processes or -1 to terminate:\n";
    cout << "----------------------------------------------------------------------------\n";
    cout << " Input positive integer or " << terval << " to terminate: ";
    while (cin >> posnum && posnum != terval) 
    {
        if (posnum > 0) 
        {
            ++ctr;
            sum += posnum;
            if (max < posnum)
                max = posnum;
            if (min > posnum)
                min = posnum;
        }
        else 
        {
            cout << "error: input must be positive! if negative, the value will only be -1! try again..." << endl;
        }
        cout << " Input positive integer or " << terval << " to terminate: ";
    }
    cout << "\n Your input is for termination. Here is the result below: " << endl;
    cout << " Number of positive integers is: " << ctr << endl;
    if (ctr > 0) 
	{
        cout << " The maximum value is: " << max << endl;
        cout << " The minimum value is: " << min << endl;
        cout << fixed << setprecision(2);
        cout << " The average is " << (double)sum / ctr << endl;
    }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...