May 2022 1 10 Report
Proszę zmodyfikować program MAX tak aby podawał również wartość minimalną ze zbioru wprowadzonych liczb. Program proszę nazwać MINMAX. PROGRAM MAX: #include
using namespace std;

int main ()
{
int i, a, max;
for(i = 0; i < 5 ; i++)
{
cout << "Podaj liczbe: ";
cin >> a;
if(i == 0)
max = a;
}
cout << " Liczba największa to: " << max;
return 0;
}

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.