设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 287|回复: 0
打印 上一主题 下一主题

[询问][初学者]寻求程序的可改进之处

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-5 00:36:30 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
自己正在学习C++程序的, 希望写的程序能够给各位看, 就是想能够得到更多方面的指教。
以下有一段程序, 请问有甚么可以改进的吗? 还是写出来的程序有点乱来...orz

An integer is said to be prime if it is divisible by only 1 and itself. For example,
2, 3, 5 and 7 are prime, but 4, 6, 8 and 9 are not.
a) Write a function that determines whether a number is prime.
b) Use this function in a program that determines and prints all the prime numbers between 2 and 10,000.


#include <iostream>
using std::cout;
using std::endl;

int total=0;

void isPrime (int num) {
  bool prime = true;
  for(int i=2 ; i<=num/2 ; i++) {
    if(num % i == 0) {
      prime = false;
    }
  }
  if(prime) {
    total++;
    cout << num << "\t";
  }
}

int main(void) {
  cout << "The prime numbers from 2 to 10000 are: ";
  cout << endl;

  for(int i=2 ; i<=10000 ; i++) {
    isPrime(i);
  }
  cout << endl;
  cout << "Total of " << total << " prime numbers between 2 and 10000.";

  return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-19 13:14 , Processed in 0.121360 second(s), 10 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表