0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Java開発の基本〜演習③高度なプログラミング〜

Last updated at Posted at 2019-07-02

問題

足し算引き算のみの電卓を作りましょう。
数字と演算子は引数として渡されます。

条件

  • 引数は好きな数持てるようにしましょう
  • 利用する演算子は「+」「-」のみ。それ以外の数が入力された場合には「演算子が無効です」を返す
  • 数字はアラビア数字のみの入力を許可する
  • エラーでプログラムが終了しないようにする

ざっくりと下記のような結果を期待しています。

  • これ以外の値が入る場合もあるので、テストケースを考えてエラーが出ないようにしましょう。
入力値 結果
1 + 2 + 3 計算結果は6です
1 + 2 - 3 計算結果は0です
1 たす 2 たす 3 演算子は無効です
0
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?