From 00e34584c6c75d5d1ef7e4af7e54d33328f00bf4 Mon Sep 17 00:00:00 2001 From: sahilpotdukhe <72201019+sahilpotdukhe@users.noreply.github.com> Date: Thu, 1 Oct 2020 17:37:01 +0530 Subject: [PATCH] Create New Text Document.txt --- Java/New Text Document.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Java/New Text Document.txt 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