当前位置:网站首页>[HDU 2096] 小明A+B
[HDU 2096] 小明A+B
2022-07-05 12:11:00 【全栈程序员站长】
大家好,又见面了,我是你们的朋友全栈君。
[HDU 2096] 小明A+B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2096
1 #include<iostream>
2 #include<cstdio>
3 #include<cmath>
4 #include<algorithm>
5 using namespace std;
6
7 int main()
8 {
9 int a,b;
10 int sum;
11 int t;
12 scanf("%d",&t);
13 while(t--)
14 {
15 scanf("%d%d",&a,&b);
16 a = a%100;
17 b = b%100;
18 sum = a+b;
19 sum = sum%100;
20 printf("%d\n",sum);
21 }
22 return 0;
23 }posted @ 2019-01-02 15:29
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/149178.html原文链接:https://javaforall.cn
边栏推荐
- 互联网公司实习岗位选择与简易版职业发展规划
- Multi table operation - sub query
- [yolov3 loss function]
- Matlab superpixels function (2D super pixel over segmentation of image)
- Time tools
- 石油化工企业安全生产智能化管控系统平台建设思考和建议
- redis的持久化机制原理
- Troubleshooting of high memory usage of redis in a production environment
- 【上采样方式-OpenCV插值】
- Reading notes of growth hacker
猜你喜欢
随机推荐
XML parsing
查看rancher中debug端口信息,并做IDEA Remote Jvm Debug
Matlab boundarymask function (find the boundary of the divided area)
Yolov5 target detection neural network -- calculation principle of loss function
【pytorch 修改预训练模型:实测加载预训练模型与模型随机初始化差别不大】
Mongodb replica set
【yolov3损失函数】
11. (map data section) how to download and use OSM data
Principle of persistence mechanism of redis
全网最全的新型数据库、多维表格平台盘点 Notion、FlowUs、Airtable、SeaTable、维格表 Vika、飞书多维表格、黑帕云、织信 Informat、语雀
Simple production of wechat applet cloud development authorization login
Troubleshooting of high memory usage of redis in a production environment
Design of music box based on assembly language
无线WIFI学习型8路发射遥控模块
Open3d European clustering
MVVM framework part I lifecycle
abap查表程序
图像超分实验:SRCNN/FSRCNN
Error modulenotfounderror: no module named 'cv2 aruco‘
Redis master-slave mode








![[calculation of loss in yolov3]](/img/8c/1ad99b8fc1c5490f70dc81e1e5c27e.png)
