I just started programming through the cave of programming tutorials on youtube.
I have looked for projects but looking at the code is daunting as i don't recognize everything.
Could someone take a peek at some of my code and tell me what i could do with my skill set for a project? ive just learnt loops (for,while,do,if-else) and have done char and bool.
Here's some of my code:
#include <iostream>
using namespace std;
int main()
/* == equals
!= not equals
< less than
> greater than
<= less than or equal to
>= greater or equal to
&& = logical and
|| = or
*/
{
If you want to start learning by doind projects use this site(http://www.cplusplus.com/forum/articles/12974/). Do them by order, it also says what you need for the project in the beggining so you can study it before you start.
Hope it helps
The link works, the person posting it unfortunately enclosed it in parentheses so the forum post parser included the ")." as part of the link.
http://www.cplusplus.com/forum/articles/12974/
Looks good thanks, but for now i prefer the you tube tutorials from cave of programming since i like the medium better than reading. I might go through these afterwards or if i get fed up; its surprising how much i forget. I have to refer to my other codes a lot.
its from this webpage http://www.cplusplus.com/forum/articles/12974/ , "Grading Program
Requires:
variables, data types, and numerical operators
basic input/output
logic (if statements, switch statements)
Write a program that allows the user to enter the grade scored in a programming class (0-100).
If the user scored a 100 then notify the user that they got a perfect score.
★ Modify the program so that if the user scored a 90-100 it informs the user that they scored an A
★★ Modify the program so that it will notify the user of their letter grade
0-59 F 60-69 D 70-79 C 80-89 B 90-100 A" .
I need to go back and cover some stuff so i can use the Switch statements.