C语言学习记录1 — 习题1 输出浮点数的个位数字使用了c语言的<math.h>函数库利用floor()函数向下取整计算 12345678910111213141516#include <stdio.h>#include <math.h>int main() { double n, mid_0, mid_1; int n_last; scanf("%lf",&n); mid_0 = floor(n/10); mid_1 = n - (10*mid_0); n_last = floor(mid_1); printf("%d",n_last); return 0;} C语言 #Study #C语言 C语言学习记录1 — 习题1 http://example.com/post/text3-cstudy-1.html 作者 Destiny 发布于 2024年3月18日 更新于 2024年5月24日 许可协议 C语言学习记录2 — 链表1 上一篇 手机摄像头拍摄灯笼偏色 下一篇 Please enable JavaScript to view the comments