U427100 A%B Peoblem

题目背景

题目描述

输出A%B

输入格式

两个整数,a和b

输出格式

A%B

输入输出样例

输入 #1

223 10

输出 #1

3

输入 #2

223 100

输出 #2

23

Code:

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

相关推荐

  1. U427100 A%B Peoblem

    2024-04-29 13:00:01       13 阅读
  2. U-net

    2024-04-29 13:00:01       41 阅读
  3. uniapp使用u-checkbox

    2024-04-29 13:00:01       42 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-04-29 13:00:01       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-04-29 13:00:01       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-04-29 13:00:01       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-04-29 13:00:01       18 阅读

热门阅读

  1. 搜索引擎的定义与运行原理

    2024-04-29 13:00:01       18 阅读
  2. 软件测试_边界值法

    2024-04-29 13:00:01       12 阅读
  3. CommentServiceImpl

    2024-04-29 13:00:01       13 阅读
  4. [SqlServer数据库:基于容器化]:快速部署安装

    2024-04-29 13:00:01       14 阅读
  5. 小程序API wx.startLocationUpdateBackground 的使用

    2024-04-29 13:00:01       10 阅读
  6. QT5之lambda

    2024-04-29 13:00:01       12 阅读
  7. C++ day5

    C++ day5

    2024-04-29 13:00:01      11 阅读
  8. C++中的时间相关处理

    2024-04-29 13:00:01       14 阅读
  9. python基础知识

    2024-04-29 13:00:01       12 阅读
  10. Unity坐标相关——坐标系,单位

    2024-04-29 13:00:01       13 阅读