-
Notifications
You must be signed in to change notification settings - Fork 0
/
function.cpp
144 lines (128 loc) · 3.48 KB
/
function.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// function
// #include <iostream>
// using namespace std;
// int myFunction(){
// int num1;
// cout<<"Enter first number: ";cin>>num1;
// int num2;
// cout<<"Enter Second number: ";cin>>num2;
// int sum = num1 +num2;
// return sum;
// }
// int main() {
// int sum = myFunction();
// int average = sum / 2;
// cout<<"average of the two number is: "<<average;
// return 0;
// }
// #include <iostream>
// #include <string>
// using namespace std;
// void myFunction(string name) {
// cout << name << " Pandey"<<endl;
// }
// int main() {
// myFunction("Jayesh");
// myFunction("Yogesh");
// return 0;
// }
// #include <iostream>
// #include <string>
// using namespace std;
// void myFunction(string place = "mumbai"){
// cout<<place<<endl;
// }
// int main() {
// myFunction("Pune");
// myFunction("Bengrol");
// myFunction(); // it default store value mumbai so it will print mumbai
// return 0;
// }
// #include <iostream>
// #include <string>
// using namespace std;
// void myFunction(string name, int age){
// cout << "Name of the student is: "<<name <<"\t"<<"Age of the student: "<<age<<endl;
// }
// int main() {
// myFunction("jayesh", 18);
// myFunction("harsh", 19);
// myFunction("yash",19);
// }
// #include <iostream>
// using namespace std;
// int myFunction(int num1,int num2) {
// cout<<"Sum of the two number is: "<<num1 + num2<<endl;
// }
// int main() {
// int num;
// cout<<"Enter number for how many time loops are work: "; cin>>num;
// for (int i = 1; i <= num; i++)
// {
// int num1;
// cout<<"Enter first number: ";cin>>num1;
// int num2;
// cout<<"Enter second number: ";cin>>num2;
// myFunction(num1, num2);
// }
// }
// #include <iostream>
// using namespace std;
// int swapNum(int &x , int &y) {
// int z = x;
// x = y;
// y = z;
// }
// int main() {
// int firstNUm;
// cout<<"ENter first number: "; cin>>firstNUm;
// int secondNum;
// cout <<"Enter Second number: "; cin>>secondNum;
// cout << "Befor swap first number are: " << firstNUm << "\t"<<"Before Swap Second number will be: "<< secondNum <<endl;
// swapNum(firstNUm , secondNum);
// cout << "After swap first number are: " << firstNUm << "\t"<<"After Swap Second number will be: "<< secondNum <<endl;
// }
// #include <iostream>
// using namespace std;
// int main() {
// int array[3] = {10,20,30};
// array[1] = 60;
// cout<< array[1] << endl;
// string car[5] = {"Volvo","BMW","mercedics","TATA","Jaguar"};
// cout << car[4] <<endl;
// for (int i = 0; i < 5; i++)
// {
// cout << car[i] << "\t";
// }
// }
// #include <iostream>
// using namespace std;
// int main() {
// string car[2];
// car[0] = "BMW";
// car[1] = "TATA";
// car[2] = "Tesla";
// for (int i = 0; i < 2; i++)
// {
// cout<<car[i]<<endl;
// }
// int num[5] = {0,2,16,6,1};
// cout << sizeof(num) << endl; // 4*5 = 20
// cout << sizeof(num) / sizeof(car);
// }
#include <iostream>
using namespace std;
class laptop {
public:
string brand;
string model;
int price;
string storage;
};
int main() {
laptop laptop1,laptop2;
// first laptop
laptop1.brand = "HP";
laptop1.model = "Pavillion";
laptop1.price = 45000;
}