题解 | #kiki算数#
kiki算数
https://www.nowcoder.com/practice/bcaf710fb58a44e1b678a890e6e90d7c
#include <stdio.h>
int main()
{
int a = 0;
int b = 0;
scanf("%d %d", &a, &b);
a %= 100;//不管a和b是否>=100,%100都满足条件
b %= 100;
printf("%d",(a + b) % 100);//同理,结果%100都满足条件
return 0;
}

查看6道真题和解析
