Hey guys! I want to study Java by myself, so i'm doing my baby steps right now. It's amazing how you can have everything on the web, But anyway I'll be glad for couple of instructions. I'm trying to write a code that converte a number to binary, and this is what i wrote. It gives me couple of errors in eclipse, which I don't understand. What's wrong with that? any other suggetions? I guess it's pretty sucks but I'd really like to learn and hear for any comments for fixing it. Thank you.
public class NumberConverte {
public static void main(String[] args) {
int i = Integer.parseInt(args);
public static void Binary(int int1){
System.out.println(int1 + "in binary is");
do {
System.out.println(i mod 2);
} while (int1>0);
}
}
}
The error messages:
- The method parseInt(String) in the type Integer is not applicable for the arguments (String[])
- Multiple markers at this line
- Syntax error on token "(", ; expected
- Syntax error on token ")", ; expected
- void is an invalid type for the variable Binary
- Multiple markers at this line
- Syntax error on token "mod", invalid AssignmentOperator
- Syntax error on token "mod", invalid AssignmentOperator.