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.
重複の可能性: 整数除算の結果を切り上げる方法
double d1=11, double d2=2 int i=d1/d2;
私は5になりますが、6を返したいのですが(結果が5.01の場合は、6も必要です)どうすればよいですか?
int i = (int)Math.Ceiling(d1/d2);