File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ string GetToday() {
61
61
int cnt{};
62
62
while (std::getline (iss, temp, ' -' )) {
63
63
today += temp;
64
- if (cnt == 0 ) { today += " 년" ; ++cnt; }
65
- else if (cnt == 1 ) { today += " 월" ; ++cnt; }
64
+ if (cnt == 0 ) { today += " 년 " ; ++cnt; }
65
+ else if (cnt == 1 ) { today += " 월 " ; ++cnt; }
66
66
else if (cnt == 2 ) { today += " 일" ; ++cnt; }
67
67
}
68
68
// cout << today << '\n';
@@ -122,8 +122,8 @@ int main() {
122
122
vector<string> resultName;
123
123
for (auto i : result[index] | std::views::transform (func)) resultName.emplace_back (i);
124
124
125
-
126
- cout << " 오늘 날짜 : \t\t " << today << " \n\n 이번주 PRTable은 \t " ;
125
+
126
+ cout << " 오늘 날짜 : \t\t " << today << " \n\n 이번주 PR Table은 \t " ;
127
127
Print (resultName);
128
128
129
129
/*
You can’t perform that action at this time.
0 commit comments