Adithya Bhat

Greenhorn
+ Follow
since Nov 06, 2009
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 Adithya Bhat

To check if number n is prime or not,see if it is divisible by numbers ranging from 2 to n/2.If it is divisible then it is not prime.
14 years ago
Thank you John.

Adithya.
14 years ago
But this doesn't store hex value in int,it stores in string.
Then how come this following code is valid???
14 years ago
Thank you guys for responding.
John i need it to be stored as hex.
And Rok this converts int to hex what about 0x prefix.
System.out.println(y);

i want its output to be 0x620058.
14 years ago
I have an integer

int x=6422616;

I need to convert this integer into hex and store it in y in 0x format

i.e int y=0x620058; (here 620058 is hex equivalent of 6422616).Can you please tell me how to do it???
14 years ago
Thanks Campbell,now i get what you are saying.
14 years ago
Thank you guys,code's working now.
But i don't get what Campbell is saying.
14 years ago
Hello guys i was working with multidimensional array and when i try to execute this following program i get this error.Can you guys please help me with this one.

java.lang.NullPointerException
at blur.copy(blur.java:15)
at blur.main(blur.java:30)

14 years ago
you can refer to this site for complete detail about hello world app

http://jmeworld.webs.com/
14 years ago