全部评论 3

  • (你再发个单,就说让团队队长自己交罚款

    1周前 来自 浙江

    0
  • 1

    2026-02-03 来自 广东

    0
  • 高雅人士发力了,请品鉴一下,遇到这种代吗你会怎么做:

    #include <cstdio>
    #include <algorithm>
    using namespace std;
    const int n = 10005;
    //定义数组大小上限
    int main () {
        
        int count , number[n] ;
        //定义数组与数组大小
        scanf ("%d" , &count) ;
        //输入数组大小
        for (int i = 0 ; i < count ; ++ i) {
            //循环以输入数组
            scanf (" %d " , &number[i]) ;
            //输入数组的每个元素
        }
        sort (number , number + count) ;
        //升序排序数组
        for (int i = 0 ; i < count ; ++ i) {
        //循环以输出数组
            printf ("%d\n" , number[i]) ;
            //输出数组中的每个元素
        }
        return 0 ;
    }
    

    (纯属乱打,我不懂AI特性

    2026-02-03 来自 上海

    0
    • 骗你的其实是:

      
      
      
      #include              < iostream > // 头文件
      #include              < cstdio.h >
      
      
      
      using      namespace   std;
      
      int    main()     { // 主函数
          int  a,b; // 定义两个变量 a,b;
      
      
      
      
      
          cin >>          a >>     b; // 输入
      
      
          cout   <<     a       -  b +   b    * 2; // 输出
      
      
      
      
          return 1 - int(a     -   b +     b *  114514 <= LLONG_MAX);
      
      
      }

      1周前 来自 福建

      0

热门讨论