Skip to content

Commit 165cf27

Browse files
committed
MOD / Making_PRtable.cpp, ADD / 예시 PRtable.png
1 parent 167f8f1 commit 165cf27

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

misc/Making_PRtable.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ string GetToday() {
6161
int cnt{};
6262
while (std::getline(iss, temp, '-')) {
6363
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; }
6666
else if (cnt == 2) { today += ""; ++cnt; }
6767
}
6868
// cout << today << '\n';
@@ -122,8 +122,8 @@ int main() {
122122
vector<string> resultName;
123123
for (auto i : result[index] | std::views::transform(func)) resultName.emplace_back(i);
124124

125-
126-
cout << "오늘 날짜 : \t\t" << today << "\n\n이번주 PRTable은 \t";
125+
126+
cout << "오늘 날짜 : \t\t" << today << "\n\n이번주 PR Table은 \t";
127127
Print(resultName);
128128

129129
/*

misc/예시 PRtable.png

2.38 KB
Loading

0 commit comments

Comments
 (0)