diff --git a/Java/New Text Document.txt b/Java/New Text Document.txt new file mode 100644 index 0000000..a795943 --- /dev/null +++ b/Java/New Text Document.txt @@ -0,0 +1,12 @@ +public class MultiplyTwoNumbers { + + public static void main(String[] args) { + + float first = 1.5f; + float second = 2.0f; + + float product = first * second; + + System.out.println("The product is: " + product); + } +} \ No newline at end of file