有参函数解
2023-12-26 21:17:20
发布于:广东
4阅读
0回复
0点赞
#include <iostream>
using namespace std;
bool ascii(char s){
int asc = (int)(s);
bool flag;
if(asc % 2 == 1){
flag = true;
}else{
flag = false;
}
return flag;
}
int main(){
char s;
cin >> s;
bool asc = ascii(s);
if(asc == true){
cout << "YES";
}else{
cout << "NO";
}
return 0;
}
这里空空如也
有帮助,赞一个