在 c 语言中输入实数有四种方法:使用 scanf 函数从标准输入读取实数。使用 fscanf 函数从文件中读取实数。使用 getline 函数读取一行输入,然后使用 atof 函数将其转换为实数。使用 sscanf 函数从字符串中提取实数。
如何在 C 语言中输入实数
在 C 语言中,输入实数可以使用以下方法:
1. scanf 函数
#include <stdio.h> int main() { float x; printf("输入一个实数:"); scanf("%f", &x); printf("输入的实数:%fn", x); return 0; }</stdio.h>
登录后复制
2. fscanf 函数
#include <stdio.h> int main() { FILE *fp = fopen("input.txt", "r"); float x; fscanf(fp, "%f", &x); printf("输入的实数:%fn", x); fclose(fp); return 0; }</stdio.h>
登录后复制
3. getline 函数
#include <stdio.h> #include <stdlib.h> int main() { char *line = NULL; size_t len = 0; float x; printf("输入一个实数:"); getline(&line, &len, stdin); x = atof(line); printf("输入的实数:%fn", x); free(line); return 0; }</stdlib.h></stdio.h>
登录后复制
4. sscanf 函数
#include <stdio.h> int main() { char input[100]; float x; printf("输入一个实数:"); fgets(input, 100, stdin); sscanf(input, "%f", &x); printf("输入的实数:%fn", x); return 0; }</stdio.h>
登录后复制
以上就是c语言怎么输入实数的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:momo,转转请注明出处:https://www.dingdanghao.com/article/480335.html