Seems to work until a String is entered...
But fails all tests...
package com.codegym.task.task15.task1519;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
/*
Different methods for different types
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
while (true) {
String input = reader.readLine();
if (input.equals("exit")) {
break;
} else
if (input.contains(".")) {
print(Double.parseDouble(input));
continue;
}
if (Integer.parseInt(input) > 0 && Integer.parseInt(input) < 128) {
print((short) Integer.parseInt(input));
continue;
}
if (Integer.parseInt(input) <= 0 || Integer.parseInt(input) >= 128) {
print(Integer.parseInt(input));
continue;
} else {
print(input);
continue;
}
}
}
public static void print(Double value) {
System.out.println("This is a Double. Value: " + value);
}
public static void print(String value) {
System.out.println("This is a String. Value: " + value);
}
public static void print(short value) {
System.out.println("This is a short. Value: " + value);
}
public static void print(Integer value) {
System.out.println("This is an Integer. Value: " + value);
}
}