Advertisement
Blonk

Untitled

Dec 2nd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3.  
  4. public class Main {
  5.  
  6.     public static void main(String[] args) {
  7.  
  8.         Scanner keyboard = new Scanner(System.in);
  9.  
  10.         System.out.print("Count to: ");
  11.         int num = keyboard.nextInt();
  12.  
  13.         for (int n = 0; n <= num; n++) {
  14.             System.out.print(n + " ");
  15.  
  16.  
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement