Skip to content

Instantly share code, notes, and snippets.

@ievgiienko
Created May 31, 2023 06:14
Show Gist options
  • Save ievgiienko/8e700b9c3d52bbad9b3d12e304c10137 to your computer and use it in GitHub Desktop.
Save ievgiienko/8e700b9c3d52bbad9b3d12e304c10137 to your computer and use it in GitHub Desktop.
package org.example;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
System.out.println("How are you?");
var scanner = new Scanner(System.in);
var answer = scanner.nextLine();
System.out.println("User answered: " + answer);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment