0
Iâm looking at other peopleâs codes and trying to copy for hello world but itâs not working Iâm even using there languages
Ok I have to got now I well do it tomorrow thank you for responding. itâs called Iâm trying to code (ps i donât no how to send it)
5 Respostas
+ 3
Insert your code here and lets see if there is a mistake.
+ 2
Just click on the share button, copy to clip board and paste the code here so someone can debug.
0
We would have to see your code to know what's wrong.
You can save it in code playground, then link it here.
0
HonFu Aduyeboah Francis
Found it, this is what he's working on. I don't know C++ btw.
https://code.sololearn.com/cNh59XFuLC3k/?ref=app
0
Nvm I learned how to print.
You put in cout<<hello<<world. What you want to print should be in double quotaions such as
cout<<"Hello World!";
dont forget the semi-colon. The next line should have a closed spike bracket.
e.g.
#include <iostream>
using namespace std;
int main() {
cout<<"Hello World!";
}