#include <iostream>
#include <algorithm> // std::sort
using namespace std;
template <typename T>
void printSorted(T a[], int size)
{
sort(a, a + size);
for (int i = 0; i < size; i++) {
cout << a[i] << ' ';
}
cout << endl;
}
int main()
{
int ints[3] = {3, 2, 1};
double doubles[4] = {3.5, 2.6, 19.2, 8.1};
printSorted(ints, 3);
printSorted(doubles, 4);
return 0;
}
Ночь - дочь - дичь - динь - день
Var x,y,z:integer;
begin
x:=13;
y:=3;
z:=x;
x:=z div y;
y:=x;
writeln(x+' '+y+' '+z);
end.
Ответ
<span>3)x=4, y=4, z=13</span>
//PascalABC.NET
//Версия 3.3, сборка 1627
begin
write(max(ReadInteger,ReadInteger));
end.