Created
February 18, 2011 07:56
-
-
Save thetekst/833397 to your computer and use it in GitHub Desktop.
1.1 Java home
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Напишите программу «повторюшку», которая вводит | |
строчку с клавиатуры, а затем её же и выводит.*/ | |
import java.util.Scanner; | |
public class HelloWorld { | |
/** | |
* @param args | |
*/ | |
public static void main(String[] args) { | |
Scanner scan = new Scanner(System.in); | |
String s = scan.nextLine(); | |
System.out.println(s); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment