一个简单程序,帮忙改下
目的:输入整数内的所有质数并打印,程序如下:
但是出现了不能控制输入数的问题,现在可以输入任何数据,都有输出。
还发现in的值为随即的,都整晕了。为什么会出现这种情况呢?又怎么改
指教下,谢谢
import java.io.*;
public class Test1{
public static void main(String args[])throws IOException
{
int cnt=0,in;
boolean flag;
in=System.in.read();
System.out.println("in= "+in); \\加来看in值的
for (int i=1;i<=in;i++){
flag=true;
for(int j=2;j<i;j++)
{
if(i%j==0)flag=false;
}
if(flag==true)
{
System.out.print(i+"\t") ;
cnt++;
if(cnt%5==0)System.out.println();
}
}
}
}