Last active
November 24, 2019 21:01
-
-
Save V6767404/050d01fbd090f54a705778225576c994 to your computer and use it in GitHub Desktop.
Выведите все простые числа до 100
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Выведите все простые числа до 100 | |
//число x является простым, если оно больше 1 и при этом делится без остатка только на 1 и на x | |
public class lesson01 { | |
public static void main(String[] args) { | |
int i, j; | |
boolean check; | |
for (i = 2; i < 100; i++) { | |
check = true; | |
for (j = 2; j < i; j++) { | |
if ((i % j) == 0) { | |
// если число нацело разделилось на какое-либо стоящее перед ним, то это непростое (false) | |
check = false; | |
// System.out.print(j); | |
// System.out.println(check); | |
break; | |
} | |
} | |
if (check) { | |
System.out.println(i + " простое"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment