0
How do I save code to my phone?
I have a coding related competition for Beta Club, and I want to use Sololearn as my editor. The thing is, I can't find a way to save the code itself to a html file to open in chrome.
10 Respostas
+ 4
get a text editor, something like Quoda or QEdit in android.
paste the code there, save it as html.
now hopefully you can open the file with chrome,
+ 4
What these people are trying to tell you is that there is no direct way to download your codes from SL to your local machine, other than manually copying them.
+ 2
Select your code, copy it, and paste it in the text editor of your choice. Then save it under a location where you can find it again.
0
What do you mean by that?
0
Use any html editor ur file u can save it on your phone
0
just copy it and paste it to any text editor
0
When I wrote this code it run successfully but the output was not right please some one help me.
#include <iostream>
using namespace std;
int main(){
double a,b,c;
char d[5]={'+','-','*','/','%'};
cout<<"Please enter the number \t";
cin>>a;
cout<<"what you want to do \t ";
cin>>d;
cout<<"Provide the 2nd Value \t";
cin>>b;
if(d[0])
c=a+b;
if(d[1])
c=a-b;
if(d[2])
c=a*b;
if(d[3])
c=a/b;
if(d[4])
c=a/b*100;
cout<<endl<<"Your result is: "<<c;
return 0;
}
0
I'm looking back at all of this and I feel like an idiot
0
ashutosh.html
- 1
You can have a texteditor and edit and save your codes in it.