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".
(what is the answer write in theory)
Attachments:
Answers
Answered by
1
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 as brainliest .
Similar questions