标题:[询问][初学者]寻求程序的可改进之处
取消只看楼主
機器人
Rank: 1
来 自:中國香港
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-10-18
 问题点数:0 回复次数:0 
[询问][初学者]寻求程序的可改进之处
自己正在学习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;
}

[[it] 本帖最后由 機器人 于 2008-10-23 04:26 编辑 [/it]]
搜索更多相关主题的帖子: 改进 询问 
2008-10-23 04:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-240008-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015408 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved