Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class Main {
- public static void main(String[] args) {
- int number=1;
- for (number=1;number<=20;number++)
- {
- if ((number/2)*2 == number)
- {
- System.out.println(number + "<");
- }
- else
- {
- System.out.println(number);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement