Write a program to store the total marks obtained in your last exam. If the total marks is more than 600 then print "GOOD MARKS" otherwise print "SATISFACTORY MARKS".
please give fast it's very ergent
Answers
Answered by
0
Answer:
class a1
{
public static void main ( int marks )
{
if ( marks > 600)
System.out.println( " GOOD MARKS");
else
System.out.println( " SATISFACTORY MARKS ");
}
}
Hope it helps pls mark the answer as brainliest.
Similar questions