Java programing assignments
Posted: Fri Aug 05, 2011 9:48 pm
Hello friends.
I found a great web site which has Java programing assignments. So cool site.
Here it is I am posting this because I was searching this kind of site for a long time and this will help the others who learn Java too. I think Java experts in ROBOT.LK might already know this and might know better sites than this too.
http://www.javaranch.com/java-college.jsp
I already did the first assignment too
But bit different from the answer they gave
But works as required.
By the way, I really like this new Smilie Yahoo

I found a great web site which has Java programing assignments. So cool site.

Here it is I am posting this because I was searching this kind of site for a long time and this will help the others who learn Java too. I think Java experts in ROBOT.LK might already know this and might know better sites than this too.

http://www.javaranch.com/java-college.jsp
I already did the first assignment too

But bit different from the answer they gave


Code: Select all
//Assignment Java-1a (Hundred)
//http://www.javaranch.com/hundred.jsp
class JavaranchAss1{
public static void main(String args[]){
String a;
a=args[0];
for(int x=0;x<=100;x++)
System.out.print(a+" ");
}
}
By the way, I really like this new Smilie Yahoo






