0
Sololearn Console Disadvantage
Sololearn Console Disadvantage is it's take output once at a time so it's pretty confusing to take input in some cases for example Matrix Multiplication or any other matrix programs https://code.sololearn.com/cJjk6h3sY3s0/?ref=app
4 Respostas
+ 3
https://www.sololearn.com/post/1729566/?ref=app
input multiple lines
+ 3
Nothing is perfect and in the modern age of hackers etc, anything available free and online has to compromise on many things in order to ensure safety.
There are a multitude of options to use your code and use real-time input. You can still write your code here, then copy and paste it/save it for the other option.
+ 2
Hasibur Rahman
You tagged Javascript.
Used with html, it's actually the one place you can get interactive input in Sololearn.
+ 1
Sololearn can take two inputs if you put them in separate lines.
Example:
My code is:
num1 = int(input())
num2 = int(input())
print(num1+num2)
Input:
1
3
Output:
4