C語言實現四捨五入取整數

#include<stdio.h> int main() { double s; int m; scanf("%lf",&s) ; m=(int)(s+0.5); printf("%d\n",m); return 0; }
相關文章
相關標籤/搜索