- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
public static int getLengtg() throws NumberFormatException, IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int dlina;
try{
dlina = Integer.parseInt(reader.readLine());
}
catch(IOException e)
{
dlina = Integer.parseInt(reader.readLine());
}
return dlina;
}
Комментарии (3) RSS
Добавить комментарий