int main( )
{
//Dit is een single-line comment.
/*Dit is een multiple
lines comment*/
cout << “Hello world!”;
//output Hello world!
cout << “This” << “is” << “awesome!”;
//output This is awesome!
cout << “Hello world!” << endl;
//endl en \n gebruik je voor een line break.
cout << “Hello world!” << “\n \n”;
//Een dubbele \n zorgt voor een lege lijn en een \n staat in de tekst tussen “ “.
cout << “Hello \n world! \n I \n love \n programming!”;
//Hier heb je meerdere line breaks.
int myVariable = 10;
cout << myVariable;
//Outputs de waarde van myVariable (10).
int a = 30;
int b = 15;
int sum = a + b;
cout << sum;
//output 45
int a, b;
int sum;
cout << “Enter a number \n”;
cin >> a;
//Het programma wacht totdat de gebruiker een nummer heeft ingetoetst.
cout << “Enter another number \n”;
cin >> b;
sum = a + b;
cout << “Sum is: “ << sum << endl;
//De som wordt berekend van de nummers die de gebruiker heeft ingetoetst.
int a = 100;
a = 50;
cout << a;
//Outputs 50; de allerlaatste waarde van een variabele wordt altijd gebruikt.
int a = 15;
int b = a;
//Je kan een variabele als waarde ook een variabele geven.
int x = ;
cout << x;
//Outputs 3, want het is een integer (in gehele getallen).
//Delen door 0 geeft een error.
int x = 25 % 7;
cout << x;
//Outputs 4, een modulus (%) geeft de rest aan.
int x = 5 + 2 * 2;
cout << x;
//Outputs 9; in CPP worden de rekenregels toegepast.
int x = 10
x += 4;
cout <<x;
//Outputs 14; bij de waarde van de variabele x wordt 4 opgeteld.
//x++: x = x + 1, dit geldt ook voor x- -: x = x -1.
int x = 10;
x -= 5;
cout <<x;
//Outputs 5; bij de waarde van de variabele x wordt 5 afgetrokken.
//Dit kan ook met *, / en %.
x = 5;
y = x++;
//x wordt 6 en y is x voordat het 6 werd, dus 5.
//Dit geldt ook voor x- -.
x = 5;
y = ++x;
//y krijgt de waarde van x, waardoor x en y 5 zijn.
//Dit geldt ook voor - -x.
int x = 81;
int y = 3;
cout << x / y <<endl;
//De berekening kan ook in cout zitten.
int x = 5;
int y = 3;
if (x < y) {
cout << “Hi there”; }
else {
cout << “Bye bitch”; }
//Er kan in een if-statement een nieuwe if-statement beginnen, dit kan ook in een else.
1
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller berkbilgin. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $3.19. You're not tied to anything after your purchase.