hello frnds i have some problem in this code can you solve this my issue and pls tell me whats the issue in this progrma
public class App {
public void print(int i) {
System.out.println("int value==" + i);
}
public void print(float f) {
System.out.println("float value==" + f);
}
public static void main(String[] args) {
App pd; // create aobject
pd.print(5);
pd.print(20.03); //here error is occured
}
}