全部评论 8

  • #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a;
        cin>>a;//输入
        if(a>=10)cout<<"yes";//判断是否大于10,如果是,输出yes
        else cout<<"no";//否则输出no
    	return 0;
    }
    

    1周前 来自 浙江

    1
  • #include<iostream>
    using namespace std;
    int main(){
    long long n;
    cin >> n;
    if (n >= 10){
    cout << "yes";
    } else {
    cout << "no";
    }
    return 0;
    }

    2025-12-24 来自 北京

    1
  • 好了,现在是27阅读了

    2025-11-28 来自 北京

    1
  • n=int(input())
    if n>=10:
    print('yes')
    else:
    print('no')

    1周前 来自 湖北

    0
  • #include <iostream>
    using namespace std;

    int main(){
    int n;
    cin>>n;
    if(n>=10){
    cout<<"yes";
    }else{
    cout<<"no";
    }
    return 0;
    }

    2026-01-10 来自 北京

    0
  • #include<iostream>
    using namespace std;
    int main(){
    int a;
    cin>>a;
    if(a>=10){
    cout<<"yes";
    }else{
    cout<<"no";
    }
    return 0;
    }

    2025-12-26 来自 天津

    0
  • 我这个评论竟然有20个人阅读,笑死了。

    2025-11-23 来自 江西

    0
  • 哦,sorry,一不小心又做对了。用Python做对的。

    2025-11-15 来自 江西

    0

热门讨论