30 ! нужно перевести с паскаля в c++. ! var a,b,c,d,e,max,min: integer; begin writeln('a, b, c, d, e: '); readln(a,b,c,d,e); if a> b then max: =a else max: =b; if c> max then max: =c; if d> max then max: =d; if e> max then max: =e; if a if c if d if e writeln(min); writeln(max); end. пример: a, b, c, d, e: 1 2 3 4 5 1 5

123lego123den 123lego123den    3   28.09.2019 14:01    0

Ответы
paa050403 paa050403  09.10.2020 00:44

#include <iostream>

#include <algorithm>

int main()

{

   int arr[5];

   for(int i = 0; i < 5; i++)

       std::cin >> arr[i];

   std::cout << "Минимальный = " << *std::min_element(arr, arr+5) << std::endl;

   std::cout << "Максимальный = " << *std::max_element(arr, arr+5) << std::endl;

}


30 ! нужно перевести с паскаля в c++. ! var a,b,c,d,e,max,min: integer; begin writeln('a, b, c, d, e
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика