单选题

运行下面这段程序,将会输出()?

#include <bits/stdc++.h>

using namespace std;

int main() {

    int n = 60000;

    long long m = n * n;

    if (m > 100000000)

        cout << "Yes";

    else

        cout << "No";

    return 0;

}


A.

Yes

B.

No

发表评论

登录 后再回复