1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>単純計算</title> </head> <body> <script> //初期値 var price=90; var piece=12; var bascket=250; var taxRate=0.1; var total=0; //処理(命令) total = price * piece + price * piece * taxRate + taxRate ; //出力 var str ='単価「' +price+ '」円のリンゴを、「' +piece+'」個買ったときの消費税合算後の支払い金額は、「' +total+'」円です。「'+bascket+'」円、消費税率は「'+taxRate+'」とします。'; console.log( total ); </script> </body> </html> |