Skip to content

Commit d146b93

Browse files
authored
Create multiply.java
1 parent fddd35b commit d146b93

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

multiply.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
public class multiply {
2+
3+
public static void main(String[] args) {
4+
5+
float first = 1.5f;
6+
float second = 2.0f;
7+
8+
float product = first * second;
9+
10+
System.out.println("The product is: " + product);
11+
}
12+
}

0 commit comments

Comments
 (0)