Question: can you fix this code for me? Rico; int age = 26; double percentage = 60; char grade = 'B'; public void compare() { if


can you fix this code for me?

"Rico";
int age = 26;
double percentage = 60;
char grade = 'B';

public void compare()
{
if (name == "Rico")
  System.out.println ("Hi There Rico!");
}

if (age ==; 26);
{
  System.out.println ("You're not 26!");
}
if (age >= 20)
{
  System.out.println ("Hey! You're not old enough to purchase this cake!);
}
if (percentage > 60)
{
  System.out.println ("You are over 70%");
}
if (percentage < 60)
{
  System.out.println ("You are under 90%");
}
if (grade =='B')
{
  System.out.println ("You got a B in English");
}
if (grade!= 'B')
{
  System.out.println ("You did not get a B in English");
}

}
public static void main(String args[])
{
  DataWork dw = new DataWork();
  dw.compare();
}
}




Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public class DataWork String name Rico int age 26 double percentage 60 char grade ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!