不会的跟我来。
2024-04-17 21:26:50
发布于:广东
1阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
int n, x, count = 1;
cin >> n >> x;
while (n >= 10) {
n /= 10;
count++;
}
if (x == count) {
cout << "Yes" << endl;
} else {
cout << "No" << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个