Day 15: Multiplication of two Decimal Numbers of 100DaysCodingChallenge
Hello all,
I have started the 100 days of coding challenge to improve my programming skills..
Today is the Day15 of 100DaysCodingChallenge for
Multiplication of two Decimal Numbers taken input by the user.
Code :
let a = prompt("Enter a : "); let b = prompt("Enter b : "); let c = a * b; console.log("Multiplication of two Decimal Numbers "); console.log("a * b = ", c);
Output :
Happy Coding:)
Comments
Post a Comment