Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は3つの変数abcを持っています。配列を使用して値を並べ替えることなく、これらの変数の最小値を選択して1を追加する方法(Javaの場合)が必要です。
これを行う方法はありますか?
プログラムの開始時に、これらの変数はすべてゼロに等しくなります。
Math.min(Math.min(a,b), c) + 1
int a = 1; int b = 2; int c = 3; int min = Math.min(a, Math.min(b, c)) + 1;