Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Domashka8 {
- public static void main(String[] args) {
- int a = 0;
- while (a <= 10) {
- if (a == 3) {
- System.out.println("Вот счастливое число!");
- break;
- }
- a++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment