As part of learning to write Java I found on the web the "case" function for Multiple conditions.
The problem for me with this function is that it compares the argument to the specific numbers that I use as a conditions, but what happens if I want to compare the argument each time for a different range of numbers, Is there more Elegant way than use a lot of "if"s? Something more like the "cond" syntax in scheme?
public class Assignment02Q03 {
public static void main(String[] args){
int grade=Integer.parseInt(args[0]);
if (grade >= 90) {
System.out.println("A");
}else {
if (grade>=80 ){
System.out.println("B");
}else {
if (grade>=70){
System.out.println("C");
}else {
if (grade>=60){
System.out.println("D");
}else {
System.out.println("F");
}
}
}
}
}
}
There must be something more elegant :)
Thank you!