+ 4
My web programs aren't running on sololearn. What could be the problem
even the programs that used to run aren't running
14 Respuestas
+ 5
Please give details how can I help you if you not give information.
+ 4
So, where is problem.
+ 4
they were running before but not now.... I think this would help... I have more than 230 codes some are public
+ 4
Well, I cannot resolve all 230 code but Here is from JavaScript.
var n = prompt("Enter an angle", "");
n=parseFloat(n);
alert(n);
n=parseFloat((3.14159265/180)*n);
alert(n);
var answer = Math.sin(n);
var a = Math.cos(n);
var sd = Math.tan(n)
alert("The sine of " + n + " is " + answer+"\n& cosine is" + a + "\n& tangent is" + sd);
+ 4
I meant to say that it was running correctly before but now there simply no output, not even errors
+ 4
output section is blank top to bottom
+ 4
But I have seen around 18 or more code they all working fine. I think may be a bug. Uninstall the app and reinstall. Maybe it can help
+ 4
thanks for that one. You are right! They are working on my tab
+ 3
Can you show your code or explain it please
+ 3
well there are many of them
+ 3
yeah, some of them
+ 3
CSS
#loader
{
border: 20px solid blue;
border-radius: 50%;
border-top: 20px solid red;
width: 100px;
height: 100px;
animation: spin 5s linear infinite;
}
@keyframes spin
{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
body{
background-color: yellow;
}
HTML
<!DOCTYPE html>
<html>
<body>
<div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
<div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"><div id="loader"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
+ 3
New one
Jss(only)
var n = prompt("Enter an angle", "");
var answer = Math.sin(n);
var a = Math.cos(n);
var sd = Math.tan(n);
alert("The sine of " + n + " is " + answer+"\n& cosine is" + a + "\n& tangent is" + sd);
+ 2
Is your code public