blob: 1a72bfec728ba49bf977b849c4fc5f5732ad5e49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* */ import java.io.BufferedReader;
/* */ import java.io.InputStreamReader;
/* */ import java.io.PrintStream;
/* */
/* */ public class PressAnyKey
/* */ {
/* */ public PressAnyKey(String disp)
/* */ throws Exception
/* */ {
/* 13 */ System.out.println(disp);
/* 14 */ BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
/* 15 */ int ch = stdin.read();
/* */ }
/* */ }
/* Location: Modulus.jar
* Qualified Name: PressAnyKey
* JD-Core Version: 0.6.2
*/
|