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.
除算の商を取得する組み込み関数はありますか。Math.DivRem適用されないようです。
Math.DivRem
整数オペランドを除算すると、整数の商が得られます。入力が浮動小数点型の場合は、最初に整数型に変換してください。
double num1 = 27; int num2 = 7; double dblResult = num1 / num2; // will yield floating point result 3.857... int intResult =(int)num1 / num2; // will yield integer quotient 3