-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.cpp
More file actions
48 lines (37 loc) · 1.34 KB
/
Test.cpp
File metadata and controls
48 lines (37 loc) · 1.34 KB
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
# include <iostream>
using namespace std;
int main(){
system("Clear");
// // cout << "Hello\tWorld! " << endl; // std::cout <<" Hello world!" << str::cout<< endl; if don't write using namespace std;
// // cout << " 'This is C++ course' \" \\" << endl; // endl=\n, \t(3type)
// // int age = 18;
// // cout << " addres of age: " << &age<< endl;
// string name = "Kii";
// int age = 28;
// string university = "CSTAT";
// // cout<< " I am \"" << name << "\"" << endl;
// cout << " I am "<< name << endl;
// cout << "I am "<< age << " years old" <<endl;
// cout << " i am a student at " << university << endl;
// string employeeName[employeeCount];
// string Name;
// int n = sizeof(employeeName)/sizeof(employeeName[0]);
// cout << " Enter the name you want to delete: ";
// cin >> Name;
// for(int i=0; i <n; i++){
// if (Name == employeeName[i]){
// for (int j=i; j< n-1; j++){
// employeeName[j]=employeeName[j+1];
// employeeName[employeeCount]=employeeCount + 1;
// employeeCount++;
// }
// n--;
// i--;
// }
// }
// cout << "Array after deleting the name: ";
// for (int i = 0; i< n; i++){
// cout << employeeName[i]<< " ";
// }
return 0;
}