gpt4 book ai didi

c - C 程序中的条件未给出所需的结果

转载 作者:太空宇宙 更新时间:2023-11-04 00:36:55 24 4
gpt4 key购买 nike

我正在编写一个程序,通过插入 3 个整数来识别用户可以组成的三角形。然后根据它所经过的条件和语句,判断他们能做出的三角形是等边三角形(所有边都相同),还是等边三角形(没有边相同),还是等腰三角形(两边相同)。用户将在每次询问时输入 1-15 厘米之间的值。如果用户键入任何低于或高于限制的内容,程序会告知他们无法完成并简单地停止。

这是我的代码

    /*** Purpose: To create a C program which takes 3 integers and produces a result that shows which triangle(If valid) they have chosen.***/

#include <stdio.h>
int main()
{
/*** Declaring triangle variable sides ****/

float sideA;
float sideB;
float sideC;
char ch;

printf("Lets explore triangles! Please insert a value for side 'A' of your triangle.\n");
printf(" Ranging from 1-15cm.\n");
while(scanf("%d", &sideA) != 1)
{
printf("You inserted an incorrect value. Please insert a number ranging between 1-15cm, and try again.\n");
while ( (ch=getchar()) != '\n' );
}

printf(" Now insert a value for side 'B' of your triangle.\n");
while(scanf("%d", &sideB) != 1 )
{
printf("You inserted an incorrect value. Please insert a number ranging from 1-15cm, and try again.\n");
while ( (ch=getchar()) != '\n' );
}

printf(" And finally, insert a value for side C of your triangle ranging from 1-15cm.\n");
while(scanf("%d", &sideC) != 1 )
{
printf("You inserted an incorrect value. Please insert a number ranging from 1-15cm, and try again.\n");
while ( (ch=getchar()) != '\n' );
}

/*** List of conditions based on user input to identify if the triangle is valid and if so, what type of triangle they get***/

if(sideA <=0 || sideB<=0 || sideC <=0)
{
printf(" You cannot have a triangle with any side having a value of 0.\n");
}
else
if( (sideA+sideB<=sideC) || (sideB+sideC<=sideA) || (sideC+sideA<=sideB) )
{
printf("Your triangle is invalid!\n");
printf("The sum of every pair of sides must be greater than the third side of a triangle.!\n");
printf("Please try again.\n");
}
else
if( (sideA==sideC && sideB==sideC) || (sideB==sideA && sideC==sideA) || (sideC==sideB && sideA==sideB) ) /*** Code to determine EQUILATERAL TRIANGLE***/
{
printf(" Your input creates a valid EQUILATERAL triangle.\n");
}
else
if( (sideA == sideB ) || (sideB == sideC ) || (sideC == sideA ) )/*** Code to determine ISOSCELES TRIANGLE***/
{
printf("Your input creates a valid ISOSCELES triangle.\n");
}
else
if( (sideA!= sideB) && (sideB != sideC) )/*** Code to determine SCALENE triangle ***/
{
printf("Your input creates a valid SCALENE triangle.\n");
}
else
{
printf("You have inserted invalid range of values, as a result your triangle is invalid.\n");
printf("Please restart the program by closing it and opening it again to retry\n.");
printf("Goodbye.\n");
}
return(0);
}

下图是程序编译运行时的结果。 This is the result when the program is running.

基本上无论我插入有效整数还是无效整数,它仍然会给出与屏幕截图相同的结果。

我仍在学习 C,所以我可能会遗漏一些东西,所以非常感谢任何帮助。

我还希望能够添加条件 while 循环,以阻止用户插入不正确的值或在需要整数时插入字符。我应该在哪里插入 while 循环?我该如何准确地编写它?

更新 1。我已经更新了代码部分

 if(sideA <=0 || sideB <=0 || sideC <=0)
{
printf(" You cannot have a triangle with any side having a value of 0.\n");
}
else
if(sideA >15 || sideB >15 || sideC >15)

Its working!

所有回复都将我指向同一个问题和答案。我已经分别更新了代码,如第二个屏幕截图所示,它工作得很好。

我还测试了每个三角形的值,效果非常好。

我还遇到了另一件事。当测试插入整数以外的值时,它会出现类似下面的屏幕截图的内容。

enter image description here

我知道我必须插入一个条件来阻止某人插入除整数以外的任何内容,但是我有点迷糊了。如果没有 while 循环函数,我不太确定如何做到这一点。有什么想法吗?

更新 2:我已经更新了我的代码,以便 float 可以被视为有效,因为三角形可以有一个浮点整数。然而..

Issue 4

通过这样做,代码中的 while 循环条件仍然使语句在要求用户为 sideBsideC< 输入值后立即出现。有什么解决办法吗?

还有

当测试只是插入一个null 值或按回车键时,程序没有任何反应。我们如何才能使用户不能将 null 作为值?

更新 3: 调试后,我在更新 2 后发现了问题。我只是将 %d 更改为 %f` 并解决了该问题。仍在找出空值或不允许输入空格键的问题。如果有人对此有想法。请告诉我

最佳答案

if(sideA || sideB || sideC <=0)

这并没有测试你认为它做了什么。它被解析为

if ( (sideA) || (sideB) || (sideC <= 0) )

所以如果 sideA 则测试为真是非零的,或者如果 sideB是非零的,或者如果 sideC为负数或零。

如果您习惯使用 bool 类型的其他编程语言,您可能会认为像 sideA 这样的表达式不是 bool 值,所以这应该会触发类型错误。但是 C 有效地将整数视为 bool 值:C 中的 bool 值实际上是一个整数值,它要么是 0(表示假),要么是 1(表示真)。例如 sideC <= 0 的值如果 sideC 为 1小于 0,否则为 0。 a || b 的值如果 a 为 0和 b否则都是 0 和 1。

C 没有任何内置结构来测试三个值中的一个是否为负。最清楚的表达方式是

if (sideA <= 0 || sideB <= 0 || sideC <= 0)

你在其他if中犯了类似的错误声明。

关于c - C 程序中的条件未给出所需的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29196534/

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