If 06. Даны два числа. Вывести большее из них.
Решение на Python 3:
import random
A = random.randrange(-3,3)
B = random.randrange(-3,3)
print("Два числа:", A, B)
if A > B:
_max = A
else:
_max = B
print("Большее: ", _max)
Решение на C++
#include <bits/stdc++.h>
using namespace std;
int main() {
srand((int)time(0));
int _max, A, B;
A = rand() % 20 - 10;
B = rand() % 20 - 10;
cout << "Number 1: " << A << endl;
cout << "Number 2: " << B << endl;
if(A > B)
_max = A;
else
_max = B;
cout << "Maximum: " << _max << endl;
return 0;
}