解题思路:
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int f(int n)
{
int i=2;
for(i=2;i<n;i++)
{
if(n%i==0)
{
break;
}
}
if(n==i)
{
return 1;
}
else
{
return 0;
}
}
int main()
{
deque<int> q;
int count=0;
for(int i=100;i<=200;i++)
{
if(f(i)==1)
{
q.push_back(i);
count++;
}
}
cout<<count<<endl;
copy(q.begin(),q.end(),ostream_iterator<int>(cout," "));
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:577 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:591 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
三角形 (C语言代码)浏览:965 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
剪刀石头布 (C语言代码)浏览:1519 |
字符串比较 (C语言代码)浏览:770 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:725 |
数列排序 (C语言代码)浏览:674 |
矩阵转置 (C语言代码)浏览:855 |