码迷,mamicode.com
首页 > 其他好文 > 详细

111

时间:2014-11-14 01:46:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:java


class  sushu
{
	public static void main(String[] args) 
	{
		System.out.println("Hello World!");
		//int tp=0;
		for (int x=2;x<=100 ;x++ )
		{
			int tp=0;
		 	for (int y=2  ;y<=x-1 ;y++ )
			{
				if (x%y==0)
				{
					tp=1;
					break ;					
				}			
			}
			if (tp==0)
				{
				System.out.print(x+" ");
				}
		}

	}
}


111

标签:java

原文地址:http://9609214.blog.51cto.com/9599214/1576264

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!