Files
ASDV-Java/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ComputeExpression.java
2025-10-19 21:30:53 -05:00

17 lines
425 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
/**
*
* @author caleb
*/
public class ComputeExpression {
public static void main(String[] args) {
System.out.print("(10.5 + 2 * 3) / (45 3.5) = ");
System.out.println((10.5 + 2 * 3) / (45 - 3.5));
}
}