-
Notifications
You must be signed in to change notification settings - Fork 0
/
eingabe.java
187 lines (161 loc) · 4.18 KB
/
eingabe.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
//input helper class
//package iotool
//readByte
//readShort
//readInt
//readLong
//readFloat
//readDouble
//readString
//readChar
public class eingabe {
//read-Byte-Methode
public static byte readByte(String inText) {
byte bZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
bZahl = 0;
System.out.print(inText);
try {
bZahl= Byte.parseByte(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein Byte.");
}
catch (IOException e) {
e.printStackTrace();
}
return bZahl;
}
//read-Short-Methode
public static short readShort(String inText) {
short sZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
sZahl = 0;
System.out.print(inText);
try {
sZahl= Short.parseShort(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein Short.");
}
catch (IOException e) {
e.printStackTrace();
}
return sZahl;
}
//read-Integer-Methode
public static int readInt(String inText) {
int iZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
iZahl = 0;
System.out.print(inText);
try {
iZahl= Integer.parseInt(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein Integer.");
}
catch (IOException e) {
e.printStackTrace();
}
return iZahl;
}
//read-Long-Methode
public static long readLong(String inText) {
long lZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
lZahl = 0;
System.out.print(inText);
try {
lZahl= Long.parseLong(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein Long.");
}
catch (IOException e) {
e.printStackTrace();
}
return lZahl;
}
//read-Float-Methode
public static float readFloat(String inText) {
float fZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
fZahl = 0;
System.out.print(inText);
try {
fZahl= Float.parseFloat(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein float.");
}
catch (IOException e) {
e.printStackTrace();
}
return fZahl;
}
//read-Double-Methode
public static double readDouble(String inText) {
double dZahl ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
dZahl = 0;
System.out.print(inText);
try {
dZahl= Double.parseDouble(br.readLine());
}
catch (NumberFormatException e) {
System.out.println("Exception geworfen, kein double.");
}
catch (IOException e) {
e.printStackTrace();
}
return dZahl;
}
//read-String-Methode
public static String readString(String inText) {
String sText ;
BufferedReader br;
//Eingabepuffer für eine Dateneingabe neu erstellen
br = new BufferedReader(new InputStreamReader(System.in));
sText = "";
System.out.print(inText);
try {
sText= (br.readLine());
}
catch (IOException e) {
e.printStackTrace();
}
return sText;
}
//read-Character-Methode
public static char readChar(String inText) {
char cZeichen ='0';
System.out.print(inText);
try {
do{
cZeichen =(char) System.in.read();
}
while(cZeichen == '\n' | cZeichen =='\r');
}
catch (IOException e) {
e.printStackTrace();
}
return cZeichen;
}
}
//found @ coderz-home.de, modified by ewing 20150131