4 条题解

  • 1
    @ 2026-8-24 20:27:33

    #include<bits/stdc++.h> using namespace std; int main() { cout << 174 % 4; return 0; }

    • 0
      @ 2026-6-6 21:00:36

      python题解:

      print(174 % 4)
      

      当然主角C++题解登场:

      #include <iostream>
      using namespace std;
      int main(){
        cout << 174 % 4;
        return 0;
      }
      
    • 0
      @ 2026-4-7 13:00:14

      #include using namespace std; int main() { cout<<174%4; }

      • -1
        @ 2026-4-24 21:50:14
        #include <bits/stdc++.h>//万能头文件
        using namespace std;//命名空间
        int main(){//主函数入口 
        	cout<<174%4;
        return 0;//主函数出口
        }
        
        • 1

        信息

        ID
        3489
        时间
        1000ms
        内存
        256MiB
        难度
        1
        标签
        递交数
        94
        已通过
        70
        上传者