/*题目:判断101-200之间有多少个素数,并输出所有素数。*/- class Demo2
- {
- public static void main(String[] args)
- {
- System.out.print("101-200之间的素数有:");
- int t=0;
- for (int a=101;a<=200 ;a++ )
- {
- int s=0;
- for (int i=1;i<=a;i++)
- {
- if(a%i==0)
- {
- s++;
- }
- }
- // System.out.print(s+" ");
- if(s<3)
- {
- System.out.print("["+a+"]");
- t++;
- }
- }
- System.out.print("\r共有"+t+"个");
- }
- }
复制代码
|
|