Advertisement
RazorBlade57

WeirdLab

Nov 21st, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Lab {
  3.  
  4.     public static void main(String[] args) {
  5.         Scanner keyboard = new Scanner(System.in);
  6.         int x = keyboard.nextInt();
  7.         for (int i = 1; i < 10; i = x * 3 ){
  8.             System.out.println(i);
  9.         }
  10.  
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement