Skip to content

Commit

Permalink
fix: enhance hint for %
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Oct 22, 2024
1 parent addd926 commit 7696707
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const BoardEditor = forwardRef<TurtleGraphicsHandle, TurtleGraphicsProps>
if (props.problem.displayProgram.split('\n')[(currentLine ?? -1) - 1]?.includes(' % ')) {
hintText += hintText ? '\n\n' : '\n\nヒント: ';
hintText +=
'「%」は剰余算の演算子です。%の右側の数値で左側の数値を割った数の余りです。例えば、「1 % 7」は、1を7で割った余りの数になるので、1になります。';
'「%」は剰余算の演算子です。%の右側の数値で左側の数値を割った数の余りです。左右の数値が整数であれば、商も余りも整数になります。例えば、「1 % 7」は1を7で割った余りの数になるので1、「2 % 7」は2、「3 % 7」は3、「10 % 7」も3になります。';
}
}
}
Expand Down

0 comments on commit 7696707

Please sign in to comment.