Math, asked by gurkomalkaur0786, 7 hours ago

write a program to find the average of four number intialised at run time​

Answers

Answered by purveshKolhe
1

Answer:

QBASIC::

CLS

PRINT 36+27+37+54 / 4

END

PYTHON::

print(36+27+37+54 / 4)

JAVA::

public class Brainly {

public static void main(String[]args) {

System.out.println(36+27+37+54 / 4);

}

}

Similar questions
Math, 7 months ago