Skip to content

Instantly share code, notes, and snippets.

@mmasias
Last active January 1, 2024 22:46
Show Gist options
  • Save mmasias/94980c0c076774e3d51a0e7ec1f7d990 to your computer and use it in GitHub Desktop.
Save mmasias/94980c0c076774e3d51a0e7ec1f7d990 to your computer and use it in GitHub Desktop.
Plantilla java que incluye la clase Scanner
import java.util.Scanner;
class ClassWithScanner {
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment