Kein Unterschied -
sprich dein Leiden durch
niemand guckt
class Primzahl {
public static void main(String[] args) throws Exception{
int i;
BufferedReader bf = new BufferedReader(
new InputStreamReader(System.in));
System.out.println("Gib Nummer ein du schwül:");
int num = Integer.parseInt(bf.readLine());
System.out.println("Primzahl: ");
for (i=1; i < num; i++ ){
int j;
for (j=2; j
int n = i%j;
if (n==0){
break;
}
}
if(i == j){
System.out.print(" "+i);
}
}
}
}
du
ich auch nich