BASIC 2 HIFI PROGRAM ...
ALL HERE

Monday, 22 December 2014

A SIMPLE PARSING PROGRAM

public class parsing {
public static void main(String[] args)
{
String g="5";
int m=Integer.parseInt(g);
System.out.println(m);
}
}

No comments:

Post a Comment