4 条题解

  • 1
    @ 2026-1-11 10:13:53
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	cout<<"9\n8\n7\n6\n5\n4\n3\n2\n1\n0";
    }
    
    • 0
      @ 2026-4-17 15:47:54

      #include<bits/stdc++.h> using namespace std; int main() { cout<<"9\n8\n7\n6\n5\n4\n3\n2\n1\n0"; }

      • 0
        @ 2026-3-8 8:42:59

        emmmm...... 关于没有测试数据这方面。。。

        #include<bits/stdc++.h>
        using namespace std;
        int main(){
            for(int i=9;i>=0;i--)cout<<i<<endl;
            return 0;
        }
        
        • 0
          @ 2024-12-24 10:06:00

          C :

          #include<stdio.h>
          
          int main()
          {
          	for(int i=0;i<10;i++){
          		printf("%d\n",9-i);
          	}
              return 0;    	
          }
          
          
          • 1

          信息

          ID
          1712
          时间
          1000ms
          内存
          128MiB
          难度
          6
          标签
          (无)
          递交数
          81
          已通过
          28
          上传者