+ 4
I m having a hard time figuring out what to code . You guys how do u come up with an idea
I'm learning c++ , but i dont know what programme to code , how do you guys come up with an idea
4 Respuestas
+ 1
I hardly program anything concrete, just little stuffies to learn more about the programming language. Although today's little stuffie took me whole day, because 4 hours after I began in python, I found out that the python interface is just ridiculous for python and I had to return back to javascript...
+ 10
There is Apps that can help you .
Idea bag 2 . is I apps download it from Play Store it is Nice. Try it ^.^
+ 8
Make a simple calculator that takes input like this :
25 + 30
Calculates answer and shows output like this :
Ans : 55.
This was my second project in C++. first one was hello world. :)
It should be able to do all addition, subtraction, multiplication, division.
If you can make these, then update it to do this type of calculations :
(35 / 5) * (2 + 2)
Ans : 28
Hint : Use Stack data-type.
+ 3
I come up with ideas by making a "part 2". I do it all the time. It goes like this:
I'll read Practice and Principles and after learning - apply what I have learned in that book to my code!
If you have programs you created, make a part 2. Can classes be add to it? Can I add another function? Can I challenge myself and rewrite everything like making for loops to be while loops? Can I make the code smaller?