gpt4 book ai didi

c - 确定输入是否包含c中的算术运算符

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

我想遍历我的数组 arithchar 中的字符以确定输入的任何字符是否匹配它。

我的代码如下:

 int checkForAO(char password_entered[]);
int main(){
if(checkForAO(password_entered)){
//contains a password with ao
}
else{
//doesnt contain special ao.
}

int checkForAO(char password_entered[]){
int i;
char arithchar[4] = {'+','-','*','/'};
for (i=0; i<strlen(password_entered); i++) {
if ( <<<< password_entered[i] contains any character in arithchar array >>>>>>> ) ) {
printf("\nYour password contain(s) ao.\n");
return true;
}
}
printf("\nYour password didn't contain any ao.\n");
return false;
}

我需要帮助,尤其是在确定我的最终 if{} 语句时,我尝试伪编码出我需要的内容,但似乎无法弄清楚这一点。

谢谢。

最佳答案

使用strpbrk<string.h>

例如

int checkForAO(char password_entered[]){
if(strpbrk(password_entered, "+-*/")){
printf("\nYour password contain(s) ao.\n");
return true;
} else {
printf("\nYour password didn't contain any ao.\n");
return false;
}
}

关于c - 确定输入是否包含c中的算术运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32259703/

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