救我

wc007 C++ 2025-01-31 20:23:34 2025-01-31 20:24:24 5

#include <bits/stdc++.h>

using namespace std;

int main(){

char a,b;

cin>>a>>b;

if(a*b%5==0) cout<<"Yes";

else cout<<"No";

}

共 2 条回复

root 站长

char a,b; 错了

wc007 C++