Ask Question
21 March, 00:04

Write code to declare variables for s0 with a value of 12.0, v0 with a value of 3.5, a with a value of 9.8, and t with a value of 10, and then write the code to compute s on the basis of these values. at the end of your code, print the value of your variable s to the console.

+4
Answers (1)
  1. 21 March, 01:03
    0
    In which language? This will vary but it's very simple.

    In jа vascript:

    var s0 = 12.0;

    var v0 = 3.5;

    var a = 9.8;

    var t = 10;

    console. log (s0, v0, a, t);
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write code to declare variables for s0 with a value of 12.0, v0 with a value of 3.5, a with a value of 9.8, and t with a value of 10, and ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers