程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> c語言:打印100到200之間的素數

c語言:打印100到200之間的素數

編輯:關於C語言

c語言:打印100到200之間的素數


#include<stdio.h>
#include<math.h>
int main() 
{
int i = 0;
int count = 0;
for (i = 101; i <= 199; i += 2)
{
int j = 0;
for (j = 3; j <= sqrt(i); j += 2)
{
if (i%j == 0)
{
break;
}
}
if (j >sqrt(i))
{
count++;
printf("%d ", i);
}
}
printf("count=%d\n", count);
return  0; 
}

輸出結果: 101 103 107 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 193 197 199 count=21 請按任意鍵繼續. . .

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved