# Задание 1
total = 0
num = int(input())
while num != -1:
total += num
print(total)
# Задание 2
num = input().split()
num = [int(i) for i in num]
print(max(num))
# Задание 3
from random import randint
num = randint(1, 10)
good = False
for i in range(3):
ans = int(input())
if ans == num:
print('Вы угадали!')
good = True
break
elif ans < num:
print('Загаданное число больше!')
else:
print('Загаданное число меньше!')
if not good:
print(f'Загаданное число - {num}')
Объяснение:
, протестируйте программы, перед тем как их сдавать куда-либо
Задание 1
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a - b;
}
Задание 2
#include <math.h>
int a;
cin >> a;
cout << pow(a, 2) << ' ' << pow(a, 3)<< ' ' << pow(a, 5);
Задание 3
cout << "The next number for the number " << a << " is " << a + 1 <<"!\n" <<"The previous number for the number "<< a << " is " << a - 1 <<"!";
Задание 4
cout << (3 * pow(a, 3) + 18 * pow(a, 2)) * a + 12 * pow(a, 2) - 5;
Задание 5
int a, b, c;
cin >> a >> b >> c;
cout << a % 7 << "\n" << b % 7 << "\n" << c % 7;
Задание 6
int a, b, c, a1, b1, c1;
cin >> a >> a1 >> b >> b1 >> c >> c1;
cout << a1 % (8 - a) << "\n" << b1 % (8 - b) << "\n" << c1 % (8 - c);
# Задание 1
total = 0
num = int(input())
while num != -1:
total += num
num = int(input())
print(total)
# Задание 2
num = input().split()
num = [int(i) for i in num]
print(max(num))
# Задание 3
from random import randint
num = randint(1, 10)
good = False
for i in range(3):
ans = int(input())
if ans == num:
print('Вы угадали!')
good = True
break
elif ans < num:
print('Загаданное число больше!')
else:
print('Загаданное число меньше!')
if not good:
print(f'Загаданное число - {num}')
Объяснение:
, протестируйте программы, перед тем как их сдавать куда-либо
Задание 1
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a - b;
}
Задание 2
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a;
cin >> a;
cout << pow(a, 2) << ' ' << pow(a, 3)<< ' ' << pow(a, 5);
}
Задание 3
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a;
cin >> a;
cout << "The next number for the number " << a << " is " << a + 1 <<"!\n" <<"The previous number for the number "<< a << " is " << a - 1 <<"!";
}
Задание 4
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a;
cin >> a;
cout << (3 * pow(a, 3) + 18 * pow(a, 2)) * a + 12 * pow(a, 2) - 5;
}
Задание 5
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << a % 7 << "\n" << b % 7 << "\n" << c % 7;
}
Задание 6
#include <iostream>
#include <math.h>
using namespace std;
int main() {
int a, b, c, a1, b1, c1;
cin >> a >> a1 >> b >> b1 >> c >> c1;
cout << a1 % (8 - a) << "\n" << b1 % (8 - b) << "\n" << c1 % (8 - c);
}