beyondgrader.com Logo
DemoBrowseAboutTeamLogin

Is CS Amazing

Geoffrey Challen // 2021.1.0

Modify the code below so that it prints "CS is amazing!".

int yourScore = 80;
if (yourScore > 90) {
System.out.println("CS is amazing!");
} else {
System.out.println("CS is hard...");
}