red rived

Greenhorn
+ Follow
since Nov 11, 2006
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 red rived

hi.. sorry to hijack your thread.. im new.. how to compile your code?

Thanks!
17 years ago
Hi! Thanks for the resources.. I'll find one or a couple that will suit my goal. I am planning to learn it basics for 1 month and doing enterprise for a month or so.. Hope I can do that in a so little time. I'll be here JavaRanch.
17 years ago
JSP
Hi guys! I would like to start learning doing Enterprise solutions using java. I have been coding for sometime now using c-c# language.. I would like to start using the enterprise solutions of java. I am not totally new to java... but using the J2EE, Iam. Please any advice from you guys when/how to start my road. At this time.. i am thinking that I need to learn JSP first.. then...

Thank you!
Hi guys! I am new in java but not in programming.. ive been coding for c - c# for sometime now.. but now.. i would like to shift to using java.. specially doing jsp.. web services.. for now.. I would like to focus on learning from the basics to advance.. any of you guys would like to recommend what are the steps i need to learn JSP. I already know all about html.. some scripting... just need a head start for java programming.. targetting is enterprise solutions.
[ November 11, 2006: Message edited by: Bear Bibeault ]
17 years ago
JSP
--->> this is your main
for (int i=0; i<totalNumberOfChar; i++) {
PrintChar(i, " ");
PrintChar(totalNumberOfChar-i, "*");
System.out.println();
}

--->> this is for PrintChar function or whatever you call this in java
Function: PrintChar
accepts: (int totalNumberOfChar, char charToPrint)

for (int i=0; i<totalNumberOfChar; i++) {
System.out.print(charToPrint);
}



i am also new in java would like to help too..
[ November 12, 2006: Message edited by: red rived ]
17 years ago