+ 1
Do I need to get an IDE on my computer?
If I have a application like this on my phone why would I need to go to my computer? Is there a way I can link this application to the computer and phone? I've noticed that during the variable section when It asked for two inputs, I can only input one number. Does anyone recommend that I use an IDE on my computer or will this application provide me a place where I can test/use code. Hopefully someone can answer this.
3 Respostas
+ 3
For more than one input you have to put them in seprate lines.
For example
1
2
Then for e.g.
cin>>x;
cin>>y;
x will be 1 and y will be 2.
You can code a lot of stuff in the Code Playground depicted by the two braces { }
This is usually enough to try and learn and do the challenges/projects.
For larger code projects I would suggest an IDE.
0
SoloLearn app is ok for testing and using simple codes but when it comes to building real programs you'll need to use a IDE because you'll be using Frameworks that SoloLearn doesn't support. In fact SoloLearn only knows the standard base code libs of each programming language.
0
Oh and when you're executing your code in SoloLearn it is being executed in a server from SoloLearn that processes it and sends the result to you so you can't actually, for example, debug your code here on SoloLearn.