Home
О нас
Products
Services
Регистрация
Войти
Поиск
елена1201
@елена1201
July 2022
1
9
Report
решите, пожалуйста срочно
дам максимальное количество баллов
напишите программу в си++
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
nelle987
Verified answer
#include <iostream>
int main()
{
int a, b;
std::cin >> a >> b;
for (int i = a; i <= b; i++) {
switch (i % 9) {
case 1:
case 2:
case 7:
std::cout << i << " ";
break;
}
}
return 0;
}
2 votes
Thanks 1
елена1201
спасибо вам большое
×
Report "решите, пожалуйста срочно дам максимальное количество баллов напишите программу ..."
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
Verified answer
#include <iostream>int main()
{
int a, b;
std::cin >> a >> b;
for (int i = a; i <= b; i++) {
switch (i % 9) {
case 1:
case 2:
case 7:
std::cout << i << " ";
break;
}
}
return 0;
}