gpt4 book ai didi

c - 如何在 C 中显示消息或响应无效输入

转载 作者:太空宇宙 更新时间:2023-11-04 01:57:13 25 4
gpt4 key购买 nike

#include <stdio.h>
#include <math.h>
#include <stdlib.h>

int main()
{
int a, result;
float b;
printf("**This is a simple arithmetic calculator.** \n");
printf("\n Please enter an integer: ");
scanf("%i ", a);
printf("Please enter a floating point number: ");
scanf("%f", b);

result = a + b

printf("Output: ");
printf("%i + %f = %lf \n", a, b, result);
printf("%i - %f = %lf \n", a, b, result);
printf("%i * %f = %lf \n", a, b, result);
}

我需要确保您的程序不会在用户输入无效输入时崩溃。

最佳答案

scanf 是一个函数,它也有一个返回值,指示正确插入了多少输入。所以你可以做类似的事情:

while (scanf("%i ", a) != 1)
{
printf("wrong input, try again");
}

关于c - 如何在 C 中显示消息或响应无效输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32624639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com