cpp_project_in_github icon indicating copy to clipboard operation
cpp_project_in_github copied to clipboard

Awesome C++ Project in GitHub

Results 5 cpp_project_in_github issues
Sort by recently updated
recently updated
newest added

## Describe the issue - `9999999999999 + 1` を入力したら、std::invalid_argument例外が発生した ## Expected behavior `999999999999 + 1 = 10000000000000` が出力されるはずである ## Environment - Hardware: PC - CPU: Intel Core i7-11700 2.5GHz -...

bug

Fix #17 - 対応内容 - 入力を一度std::stringで受け、その後stoiで変換するようにしました - 変化処理をtry-catchで囲むことで、不正な入力値を判断しています - 提案 - 本issueの対応は、上記内容で行います - しかし、main関数のロジックが複雑になっています。また、ユニットテストもできません - 入力を管理するモジュールを作り、その中で本処理行った方がいいかもしれません

## The reason **WHY** this new feature is needed - 顧客から要求されている必要機能である ## Describe **WHAT** this new feature is 掛け算の機能を `Calculator` モジュールに追加する ## **HOW** to achieve this new feature - 引数が'*'の場合、掛け算をする...

basic function

## The reason **WHY** this new feature is needed - もともとの顧客からの要求は足し算、引き算、掛け算の3つの演算だけでした - ところが、急に割り算も追加したいと要求を受けました - 顧客としては一般的な四則演算に対応したいということです ## Describe **WHAT** this new feature is - 割り算機能の追加 - 入力が `/` の場合に割り算をする ## **HOW**...

enhancement