Engineering Full Stack Apps with Java and JavaScript
Find output or error:
class OOP1 { void x (int i) { System.out.println("one"); } void x (String s) { System.out.println("two"); } void x (double d) { System.out.println("three"); } public static void main(String[] args) { new OOP1().x (4.0); } }