2 条题解

  • 0
    @ 2025-4-13 21:00:16
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a,b;
        cin>>a>>b;
        cout<<a%b;
        return 0;
    }
    
    • 0
      @ 2024-12-22 11:04:00

      C++ :

      #include<bits/stdc++.h>
      using namespace std;
      long long x,y;
      int main()
      {
      	cin>>x>>y;
      	cout<<x%y;
      				
      	return 0;
      }
      
      • 1

      C语言程序设计教程(第三版)课后习题9.2

      信息

      ID
      191
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      (无)
      递交数
      4
      已通过
      3
      上传者