English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類
0

各位大大...第一次發問~請各位大大多幫忙勒~
老師出勒幾題C語言的程式....不大會寫....
不知道有沒有人可以幫忙....
題目:

印出1到500間所有質數,每10筆印一列



感謝大家= =!

2006-11-28 05:51:45 · 1 個解答 · 發問者 feeling 2 in 電腦與網際網路 程式設計

1 個解答

//Power by Microsoft Visual Studio 2005//可以使用 Dev-C++ 編譯此程式#include#include#include#define MAX_NUMBER 500//Eratosthenesusing namespace std;int main(int argc,char **argv){ //=====START=====// void prime_of_Eratosthenes(void); prime_of_Eratosthenes(); //=====END=====// system("PAUSE"); return EXIT_SUCCESS;}//主程式void prime_of_Eratosthenes(void){ //The Sieve of Eratosthenes int i,j,prime[MAX_NUMBER+1]; int blnTrue=EOF,blnFalse=0; cout<<"The Sieve of Eratosthenes( 1- 500)"<

2006-11-28 12:32:06 · answer #1 · answered by Big_John-tw 7 · 0 0

fedest.com, questions and answers