n = int(input('Введите натуральное число:'))
count = 0
count_multiple = 0
numbers = []
while count_multiple < 1000 and n != 0:
if n > 30000:
print('Вы ввели число больше 30000! Попробуйте еще раз')
count_multiple += 1
elif n % 5 == 0:
numbers.append(n)
count += 1
else:
print(f'количество чисел кратных пяти = {count}')
Объяснение:
Python
Не бейте, я не знаю, что я написал. Надеюсь, тебе это .
#include <iostream>
#include <vector>
using namespace std;
template<typename a, typename b>
class myPair {
public:
myPair(a first, b second) : first(first), second(second) {
}
myPair operator+(myPair a) {
return myPair(first + a.first, second + a.second);
myPair operator-(myPair a) {
return operator+(myPair(-a.first, -a.second));
a first;
b second;
};
class complex : myPair<int, int> {
friend myPair;
complex(int real, int imaginary) : myPair(real, imaginary) {
int real() {
return first;
int imaginary() {
return second;
complex operator+(complex a) {
return complex(myPair::operator+(a).first, myPair::operator+(a).second);
complex operator-(complex a) {
return complex(myPair::operator-(a).first, myPair::operator-(a).second);
complex operator*(complex a) {
return complex(real() * a.real(), imaginary() * a.imaginary());
int main() {
complex a(1, 2), b(10, 11);
cout << (a + b).real() << " " << (a + b).imaginary() << " " << (a - b).real() << " " << (a - b).imaginary() << " " << (a * b).real() << " " << (a * b).imaginary();
n = int(input('Введите натуральное число:'))
count = 0
count_multiple = 0
numbers = []
while count_multiple < 1000 and n != 0:
if n > 30000:
print('Вы ввели число больше 30000! Попробуйте еще раз')
n = int(input('Введите натуральное число:'))
count_multiple += 1
elif n % 5 == 0:
numbers.append(n)
n = int(input('Введите натуральное число:'))
count_multiple += 1
count += 1
else:
n = int(input('Введите натуральное число:'))
count_multiple += 1
print(f'количество чисел кратных пяти = {count}')
Объяснение:
Python
Не бейте, я не знаю, что я написал. Надеюсь, тебе это .
#include <iostream>
#include <vector>
using namespace std;
template<typename a, typename b>
class myPair {
public:
myPair(a first, b second) : first(first), second(second) {
}
myPair operator+(myPair a) {
return myPair(first + a.first, second + a.second);
}
myPair operator-(myPair a) {
return operator+(myPair(-a.first, -a.second));
}
a first;
b second;
};
class complex : myPair<int, int> {
public:
friend myPair;
complex(int real, int imaginary) : myPair(real, imaginary) {
}
int real() {
return first;
}
int imaginary() {
return second;
}
complex operator+(complex a) {
return complex(myPair::operator+(a).first, myPair::operator+(a).second);
}
complex operator-(complex a) {
return complex(myPair::operator-(a).first, myPair::operator-(a).second);
}
complex operator*(complex a) {
return complex(real() * a.real(), imaginary() * a.imaginary());
}
};
int main() {
complex a(1, 2), b(10, 11);
cout << (a + b).real() << " " << (a + b).imaginary() << " " << (a - b).real() << " " << (a - b).imaginary() << " " << (a * b).real() << " " << (a * b).imaginary();
}