解题思路:
#define remainder a%b

注意事项:
暂时不明
参考代码:

#include<iostream>

#include<string>

using namespace std;

#define remainder a%b

int main()

{

    int a,b;

    cin>>a>>b;

    cout<<remainder<<endl;

    return 0;

}


 

0.0分

0 人评分

  评论区