44 条题解

  • -8
    @ 2026-2-28 13:25:48
    #include<iostream>
    using namespace std;
    int main(){
        cout<<"Hello,World!";
        return 0;
    }
    

    • -9
      @ 2026-2-1 15:33:15

      #include <bits/stdc++.h> using namespace std;

      int main() { cout << "Hello,World!" << endl;

      return 0;
      

      }

      • -10
        @ 2026-2-1 17:23:25

        我是答案

        答案如下:

        主函数{
         内容(需解锁会员 --<u>点我充值</u>--)
        }
        
        
        • @ 2026-2-27 15:41:56

          有格調!

        • @ 2026-2-28 13:31:39

          呃呃呃

        • @ 2026-3-13 18:02:43

          @ emmm

        • @ 2026-8-10 11:30:55
          #include <bits/stdc++.h>
          using namespace std;
          
          int main() {
          int a[103],n,b=0;
          cin>>n;
          for(int i=0;i<n;i++){
          	cin>>a[i];
          }
          for(int i=0;i<n;i++){
          	int a1=a[i]%10;
          	int a2=a[i]/10%10;
          	int a3=a[i]/100%10;
          	int a4=a[i]/1000;
          	if(a1-a2-a3-a4>0){
          		b++;
          	}
          }
          cout<<b;
          	return 0;
          }
          
          
          
      • -19
        @ 2025-7-7 20:53:57

        命名空间写法:

        #include <bits/stdc++.h>
        using namespace std;
        
        namespace Hello_World {
        	void Hello() {
        		cout << "Hello,World!";
        	}
        }
        using namespace Hello_World;
        
        int main() {
        	Hello();
        	return 0;
        }
        
        

        信息

        ID
        11909
        时间
        1000ms
        内存
        128MiB
        难度
        1
        标签
        递交数
        505
        已通过
        169
        上传者