Srinivasa Gajula

Greenhorn
+ Follow
since Sep 26, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Srinivasa Gajula

Asuthosh,
A easy way is to create a batch file that sets up path for all your class files.
Add the following to batch file(say setpath.bat)
SET CLASSPATH=.;%CLASSPATH%;c:\com\xxx\yyy
run this batch file in a dos session and then run your java program
23 years ago
Vijay,
You can do something like this to get the number of digits.
int number = 999;
String s = new Integer(t).toString();
int len = s.length();
System.out.println("The length is " + len);
23 years ago
You can buy one from Addison Wesley site (URL is http://www.awl.com/cseng/javaseries/index.shtml) or from Amazon site. The ISBN for the poster is 0-201-43292-7.
23 years ago