Computer Science, asked by avigaming415, 2 months ago

A girl named “Kriti” gets 90 in Maths, 89 in Science, 85 in Social science, 85 in

English. WAP to display the name of the girl and the average​

Answers

Answered by pratikhyam79
0

Answer:

349/400% is the ans....

Answered by AltamasFazal
0

Answer:

class Average

{

public static void main(String args[])

{

String name = "Kriti";

int mathmarks = 90, sciencemarks = 89, SSmarks = 85;

System.out.println("Name : "+name);

System.out.println("Average : "+(mathmarks+sciencemarks+SSmarks)/3);

}

}

OUTPUT:

Name : Kriti

Average : (answer)

please follow me

Similar questions