C语言学习记录1 — 习题1

输出浮点数的个位数字

使用了c语言的<math.h>函数库
利用floor()函数向下取整计算

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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语言学习记录1 — 习题1
http://example.com/post/text3-cstudy-1.html
作者
Destiny
发布于
2024年3月18日
更新于
2024年5月24日
许可协议