We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167f8f1 commit 165cf27Copy full SHA for 165cf27
misc/Making_PRtable.cpp
@@ -61,8 +61,8 @@ string GetToday() {
61
int cnt{};
62
while (std::getline(iss, temp, '-')) {
63
today += temp;
64
- if (cnt == 0) { today += "년"; ++cnt; }
65
- else if (cnt == 1) { today += "월"; ++cnt; }
+ if (cnt == 0) { today += "년 "; ++cnt; }
+ else if (cnt == 1) { today += "월 "; ++cnt; }
66
else if (cnt == 2) { today += "일"; ++cnt; }
67
}
68
// cout << today << '\n';
@@ -122,8 +122,8 @@ int main() {
122
vector<string> resultName;
123
for (auto i : result[index] | std::views::transform(func)) resultName.emplace_back(i);
124
125
-
126
- cout << "오늘 날짜 : \t\t" << today << "\n\n이번주 PRTable은 \t";
+
+ cout << "오늘 날짜 : \t\t" << today << "\n\n이번주 PR Table은 \t";
127
Print(resultName);
128
129
/*
misc/예시 PRtable.png
2.38 KB
0 commit comments