Home
О нас
Products
Services
Регистрация
Войти
Поиск
osemkasimka
@osemkasimka
August 2022
1
33
Report
Программисты помогайте, 50 баллов, язык с++
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
MaxLevs
Код:
#include <iostream>
int main() {
int D, K;
std::cin >> D >> K;
if (D == K) {
std::cout << "Нет решений" << std::endl;
return 1;
}
int I = 1, N = 4;
while(I < N) {
int M = I*(D+K)/(D-K);
++I;
}
return 0;
}
1 votes
Thanks 1
osemkasimka
Прошу вас помочь с моей новой задачей на Java, если знаете этот язык конечно.
×
Report "Программисты помогайте, 50 баллов, язык с++..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Код: