I have 2 int\'s. How do I divide one by the other and then round up afterwards?
If you looking for 2.1 roundup> 3
double row = _datas.count / 3; double rounded = ceil(_datas.count / 3); if(row > rounded){ row += 1; }else{ }