回答編集履歴

2

少し修正

2021/04/13 00:48

投稿

stdio
stdio

スコア3307

test CHANGED
@@ -14,9 +14,9 @@
14
14
 
15
15
  int discountNum = 0; //割引金額を一時保持
16
16
 
17
- if(totalTaxPrice >= 5000){} //discountNumに20%割引をした金額を挿入
17
+ if(totalTaxPrice > 5000){} //discountNumに20%割引をした金額を挿入
18
18
 
19
- else if(totalTaxPrice >= 1000){} //discountNumに10%割引をした金額を挿入
19
+ else if(totalTaxPrice > 1000){} //discountNumに10%割引をした金額を挿入
20
20
 
21
21
 
22
22
 

1

少し修正

2021/04/13 00:48

投稿

stdio
stdio

スコア3307

test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
 
22
22
 
23
- if (discountNum >= 5000) //割引金額の上限は5000円
23
+ if (discountNum > 5000) //割引金額の上限は5000円
24
24
 
25
25
  return discountNum;
26
26