(Compute expressions) Write a program that displays the result of
(9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5)
(9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5)
public class Exercise_05 { public static void main(String[] arg) { System.out.println((9.5 * 4.5 - 2.5 * 3) / (45.5 - 3.5)); } }
pleasw in python
ReplyDelete