Advertisement
apez1

Term 1: Lesson 24 - Coding Activity 1

Oct 4th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public class Lesson_24_Activity_One {
  2.  
  3.     public static void main(String[] args) {
  4.        
  5.         for (int i = 23; i <= 89; i++) {
  6.            
  7.             System.out.print(i);
  8.            
  9.             char s;
  10.            
  11.             if (i % 10 == 2){
  12.                 s = '\n';
  13.             }
  14.             else {s = ' '; }
  15.            
  16.             System.out.print(s);
  17.  
  18.         }
  19.            
  20.    
  21.     }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement