write a program in java to solve 15.88 × 14.99
Answers
Answered by
1
public class program{
public static void main(String... args){
System.out.println(15.88*14.99);
}
}
public static void main(String... args){
System.out.println(15.88*14.99);
}
}
Attachments:
tarnmalhi:
sorry your answer is wrong
Answered by
3
Sample program to calculate and print the result of the sum i.e. 15.88 * 14.99:
public class Brainly
{
public static void main(String args[])
{
System.out.println("Entered query is as given aside: 15.88 * 14.99");
double answer = 15.88 * 14.99;
System.out.println("15.88 * 14.99 = "+answer);
}
}
Output:
Entered query: 15.88 * 14.99
15.88 * 14.99 = 238.0412
Attachments:
Similar questions