Ask 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 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.

+1
Answers (1)
  1. 23 June, 00:27
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers