-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday1.cpp
More file actions
34 lines (31 loc) · 710 Bytes
/
day1.cpp
File metadata and controls
34 lines (31 loc) · 710 Bytes
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
/*#include<bits/stdc++.h>
using namespace std;
int main(){
cout <<"Happy to start my coding journey";
}*/
/*this is the skelton of cpp
//using of \n and endl
#include<bits/stdc++.h>
using namespace std;
int main(){
cout<<"Hey Deepthi"<<endl;
cout<<"welcome"<<"\n";
cout<<"Enjoy pandagow";
}
#include<bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x; //user input with only one value
cout << "the value of x is:"<< x;
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main() {
int x,y;
cin >> x >>y;
cout <<"this is the value of x:"<< x <<"\n"<<"y is :"<< y;//user input by 2 values
return 0;
}
*/