Music, asked by mukesh9626, 1 year ago

The total number of distinct x in 0 to 1 for which

Answers

Answered by PRATHAMABD
3

&lt;html&gt;</p><p>&lt;head&gt;</p><p>[tex]&lt;script&gt;</p><p>function startTime() {</p><p>  var today = new Date();</p><p>  var h = today.getHours();</p><p>  var m = today.getMinutes();</p><p>  var s = today.getSeconds();</p><p>  m = checkTime(m);</p><p>  s = checkTime(s);</p><p>  document.getElementById('txt').innerHTML =</p><p>  h + ":" + m + ":" + s;</p><p>  var t = setTimeout(startTime, 500);}</p><p>function checkTime(i) {</p><p>  if (i &lt; 10) {i = "0" + i};  // add zero in front of numbers &lt; 10</p><p>  return i;}</p><p>&lt;/script&gt;</p><p>&lt;/head&gt;</p><p></p><p>&lt;body onload="startTime()"&gt;</p><p></p><p>&lt;div id="txt"&gt;&lt;/div&gt;

</body>

</html>

Similar questions