gpt4 book ai didi

条件不行?

转载 作者:行者123 更新时间:2023-11-30 21:37:14 25 4
gpt4 key购买 nike

当这个条件成立时,它不会采取以下操作我做错了什么!?

int main(){
printf("Press t/T for Tan x\nPress s/S for Sin x\nPressc/C for Cos x\n\nPress * for exit the program..");
scanf("%c",&choice);


if(choice==s||choice==S){
printf("Enter....etc");
......etc

这个条件对我来说根本不起作用请帮忙

最佳答案

您需要先声明choice,然后才能使用它:

char choice;

那么你的条件应该如下:

if(choice=='s'||choice=='S')

choice 的类型为 char,因此您需要将其与 char 进行比较。您可以使用单引号轻松创建 char 文字。

关于条件不行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35979006/

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