Home
О нас
Products
Services
Регистрация
Войти
Поиск
ivanhudiakov
@ivanhudiakov
June 2023
1
11
Report
Требуется найти n-ое число в последовательности простых чисел
Вводится одно натуральное число n (1≤n≤15000)
(С++ или питон)
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
bbespaev27
#include
using namespace std;
void charge(int n){
for(int i=1;i<=n;i++){
if(n%i==0){
cout << i;
}
}
}
int main(void){
int n;
cin >> n;
charge(n);
}
0 votes
Thanks 0
bbespaev27
#include или #include , кому как , мне с битсами удобнее
bbespaev27
что бы с пробелом вывел там добавь на cout ковычки
bbespaev27
#include
using namespace std;
void charge(int n){
for(int i=1;i<=n;i++){
if(n%i==0){
cout << i<<" ";
}
}
}
int main(void){
int n;
cin>>n;
charge(n);
}
More Questions From This User
See All
ivanhudiakov
August 2022 | 0 Ответы
dayu 20 ballov python zadacha malysh uchitsya schitat on umeet schitat ot 0 do n vy
Answer
×
Report "Требуется найти n-ое число в последовательности простых чисел Вводится одно натуральное число n (1≤n≤15000) (С++ или питон)"
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
using namespace std;
void charge(int n){
for(int i=1;i<=n;i++){
if(n%i==0){
cout << i;
}
}
}
int main(void){
int n;
cin >> n;
charge(n);
}
using namespace std;
void charge(int n){
for(int i=1;i<=n;i++){
if(n%i==0){
cout << i<<" ";
}
}
}
int main(void){
int n;
cin>>n;
charge(n);
}