The score of Renu in English is 10 more than two third of her score in science.
If she scored ‘x’ marks in Science , then the algebraic expression for her score
in English is
Answers
Answered by
7
Answer:
//to display the largest number
class greatest
{
void method(int a,int b,int c)
{
if(a>b && a>c)
System.out.print("GREATEST A"+a);
else if(b>c)
System.out.print("GREATEST B"+b);
else
System.out.print("GREATEST C"+c);
}
}
Similar questions