Напишите программу «повторюшку», которая вводит строчку с клавиатуры, а затем её же и выводит.
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); | |
} | |
} |
Комментариев нет:
Отправить комментарий