2 条题解

  • 2
    @ 2022-10-17 21:08:02

    简单题

    输出模板

    重视学术诚信 抄袭复制题解以达到刷 AC 率/AC 数量或其他目的的行为 ,在1s是严格禁止的。

    #include<bits/stdc++.h>//万能头
    using namespace std;
    int main(){
    	int a, b;//定义
    	cin >> a >> b;//输入
    	cout << a % b << endl;//输出答案
    	return 0;
    }
    
    • 0
      @ 2022-10-15 22:57:44
      #include<iostream>
      using namespace std;
      int main()
      {
      	int a,b;
      	cin >> a >> b;
      	cout << a % b << endl;
      	return 0;
      }
      
      • 1

      信息

      ID
      4
      时间
      1000ms
      内存
      256MiB
      难度
      2
      标签
      递交数
      165
      已通过
      105
      上传者