回答編集履歴

2

コード修正

2020/11/25 12:21

投稿

kazuma-s
kazuma-s

スコア8224

test CHANGED
@@ -194,11 +194,11 @@
194
194
 
195
195
  << " - [" << setw(4) << x2 << ", " << setw(4) << y2 << "]"
196
196
 
197
- << hex
197
+ << hex << setfill('0');
198
198
 
199
199
  << " [0x" << setw(6) << foreColor << "] [0x" << setw(6) << backColor << "]"
200
200
 
201
- << dec
201
+ << dec << setfill(' ');
202
202
 
203
203
  << (lineKind ? " 点線 " : " 実線 ")
204
204
 

1

コード修正

2020/11/25 12:21

投稿

kazuma-s
kazuma-s

スコア8224

test CHANGED
@@ -250,11 +250,11 @@
250
250
 
251
251
  for (auto it = std::begin(bases); it != std::end(bases); ++it) {
252
252
 
253
- Bottom* straightine2;
254
-
255
- if (straightine2 = dynamic_cast<StraightLine*>(*it)) straightine2->LK();
253
+ Bottom* straightine2 = dynamic_cast<StraightLine*>(*it);
254
+
256
-
255
+ if (straightine2) straightine2->LK();
256
+
257
- }
257
+ }
258
258
 
259
259
 
260
260