-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasics.cpp
130 lines (91 loc) · 2.4 KB
/
basics.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#include <iostream>
using namespace std;
void sayHello(){
cout << "Hello World" << endl;
}
int addInts(int a, int b){
return a+b;
}
float addFloats(float a, float b){
return a+b;
}
template <typename T>
T add(T a, T b){
return a+b;
}
int main(){
// // Hello World
// cout << "Hello World" << endl;
// return 0;
// Variables
int age = 21;
float weight = 60.12;
char initial = 'a';
string name = "Harshal";
// Arrays
int ages[5] = {19, 10, 8, 17, 15};
float weights[4] = {10.01, 20.13, 40.21, 40.7};
char initials[6] = {'a', 'b', 'c', 'd', 'e', 'f'};
string names[3] = {"Abel", "Alvaro", "Apollo."};
// Basic Input/Output
int num;
cout << "Enter a number: ";
cin >> num;
cout << "The number is " << num << endl;
// Operators
int a = 10, b = 3;
// sum of a and b
cout << "a + b = " << (a + b) << endl;
// difference of a and b
cout << "a - b = " << (a - b) << endl;
// product of a and b
cout << "a * b = " << (a * b) << endl;
// division of a by b
cout << "a / b = " << (a / b) << endl;
// typecasting
cout << "(float) a / b = " << (float) a / b << endl;
// modulo of a by b
cout << "a % b = " << (a % b) << endl;
// a = a + 1; a++;
int c = ++a; // ++a == a = a + 1;
int d = --b; // --b == b = b - 1;
cout << "c = " << c << endl;
cout << "d = " << d << endl;
d += c; // d = d + c;
cout << "d += c is " << d << endl;
// If / else statements
int age;
cout << "Enter an age: ";
cin >> age;
if (age >= 18) {
cout << "You can vote" << endl;
}
else if (age < 0) {
cout << "Enter a valid age" << endl;
}
else {
cout << "You cannot vote" << endl;
}
// Loops
cout << "Hello World" << endl;
cout << "Hello World" << endl;
cout << "Hello World" << endl;
cout << "Hello World" << endl;
cout << "Hello World" << endl;
for (int i = 0; i < 5; i+=1) {
cout << i << " Hello World" << endl;
}
int i = 0;
while(i < 5){
cout << i << " Hello World" << endl;
i++;
}
// Functions
sayHello();
cout << addInts(5, 7) << endl;
cout << addFloats(5.1, 7.0) << endl;
// Function Templates
cout << add<int>(5, 7) << endl;
cout << add<float>(5.1, 7.0) << endl;
return 0;
}