Hello everyone, I'm starting to learn Java (only had 1 class till now but I already got some programs to work on) so bare with me.
My question is :
long i =Integer.parseInt(args[0]);
When I have this,
1. What does long mean ?
2. What's the whole Integer.parseInt(args[0]) part for ?
When I compile the program, I gotta write it like this {"5"} or else it won't work.
I have a function apart that does the factorial of a number so that's what the program is about.
Any help ?
Cheers!

