0
How can i practice drawing shapes in the app e.g. A square or some other polygon?
How to use simplecpp in this app or turtle simulator
15 Antworten
+ 1
C++? Needs libraries to do graphics, well, more easily. Get the SDL2 library and do some tutorials on it. You'll begin drawing shapes in no time.
+ 1
Yes, give me a moment.
+ 1
Make sure you download SDL2 though.
0
Do u have link or something to get that ?
0
Yup
0
Okay ,I will get to you if I face any problem,thanx though
0
Definitely. Join the Discord server too, so you can add me as a friend if you ever need help.
0
Okay
0
Server invite link: https://discord.gg/MEjFNcC
^ That's the link btw.
0
I wanted to try this type of code on this app
# include<simplecpp>
main_program{
turtleSim();
repeat(4){
forward(10);right(90);
}
wait(5);
}
Can I do this type of coding in my smartphone?
0
I wanted to try this type of code on this app
# include<simplecpp>
main_program{
turtleSim();
repeat(4){
forward(10);right(90);
}
wait(5);
}
Can I do this type of coding in my smartphone?
0
No, not on SoloLearn. No phone compiler can do C++ graphics (as far as I know). I would suggest using your computer/laptop for it.
0
Ohk, thanx