Yakubu Lawan

Greenhorn
+ Follow
since Jan 23, 2002
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 Yakubu Lawan

Please, I need help on how to connect to Sybase ASE 11.9.2 from a JSP code. I have already tried all I can using ASP but could noy connect so I decided to try JSP. Thanks.
21 years ago
JSP
Please somebody should make sincere comment on the sample code I suggested to Mike Pirrone - we're all learning.
Thanks.
22 years ago
Erik Dark,
I'm your suggestion will not work 'cos the values of x and y will still remain thesame after calling swap(). Try displaying the values of x and y after calling Swap() in the main() method and you'll see what I mean.
22 years ago
Try using this...
------------------------------------------------

------------------------------------------------
lawanyakubu@yahoo.com

(Marilyn added code tags for readability)
[ March 01, 2002: Message edited by: Marilyn deQueiroz ]
22 years ago
Please, how do I use a class with a public 'main' already implemented?
Look at this, assuming all classes belong to thesame package.
//file AAA.java
class AAA {
public static void main(...) {
...
System.out.println("Class AAA");
...
}
}

I tried doing this but it did not work
//file BBB.java
class BBB {
public static void main(...) {
AAA aaa = new AAA();
aaa.main(); //??? I want "Class AAA" displayed
}
}
I even tried calling the AAA.main() without instatiating class AAA from withing class BBB - I got same error msg.
22 years ago
Please, I can't seem to find any function to get the ascii value of a Character e.g. 'A' is 65...
and also a function to convert decimal to hexadecimal.
Thanks.
22 years ago
Please, I can't seem to find any function to get the ascii value of a Character e.g. 'A' is 65...
and also a function to convert decimal to hexadecimal.
Thanks.
22 years ago