Computer Science, asked by snehatambe5410, 3 months ago


Complete the following program to display
multiplication of 6.40 and 300.
<! DOCTYPE html> <html>
<head> <title> Series </title> </head>
<body>​

Attachments:

Answers

Answered by SashaSushy
4

Answer

var x = 6.40

var y = 300

document.write(x*y);

Similar questions