Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Ex05 {
- public static void main(String[] args) {
- // * * * method 1
- for (int i = 201; i <= 500; i += 2) {
- System.out.println(i);
- }
- // method 2
- for (int i = 200; i <= 500; i++) {
- if (i % 2 == 1) {
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement