-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstringstream.cpp
More file actions
66 lines (45 loc) · 1.33 KB
/
stringstream.cpp
File metadata and controls
66 lines (45 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <bits/stdc++.h>
using namespace std;
/*
* Complete the timeConversion function below.
*/
string timeConversion(string s) {
if(s[8]=='p'){
stringstream ss1(s);
int hh,mm,ss;
char ch;
ss1>>hh>>ch>>mm>>ch>>ss;
stringstream str1;
if(hh!=12){
hh=12+hh;
str1<<setw(2)<<setfill('0')<<hh<<ch<<setw(2)<<setfill('0')<<mm<<ch<<setw(2)<<setfill('0')<<ss;
}
else{
str1<<hh<<":"<<mm<<":"<<ss;
}
return str1.str();
}
else{
stringstream ss1(s);
int hh,mm,ss;
char ch;
ss1>>hh>>ch>>mm>>ch>>ss;
stringstream str1;
if(hh==12){
hh=0;
str1<<setw(2)<<setfill('0')<<hh<<ch<<setw(2)<<setfill('0')<<mm<<ch<<setw(2)<<setfill('0')<<ss;
return str1.str();
}
str1<<setw(2)<<setfill('0')<<hh<<ch<<setw(2)<<setfill('0')<<mm<<ch<<setw(2)<<setfill('0')<<ss;
return str1.str();
}
}
int main()
{
cout<<"enter the time in dd:mm:ssPM or AM \n";
string s;
getline(cin, s);
string result = timeConversion(s);
cout<<result<<"\n";
return 0;
}