Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am yoshi24517 on github.
  • I am yoshi24517 (https://keybase.io/yoshi24517) on keybase.
  • I have a public key ASCz7s5yqTg83jWTnvqpBDgwm9CoZ1fcIIfujqZvLJDarwo

To claim this, I am signing this object:

@Yoshi24517
Yoshi24517 / CountingMachine.java
Created August 4, 2017 05:01
I can't figure out how to put the integers together separated by a space. How would I do that?
/**
* Copyright(c) 2017 by Yoshi24517. All rights reserved.
*/
import java.util.Scanner;
public class CountingMachine {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Integer: ");
int n = input.nextInt();