题解 | kiki算数
kiki算数
https://www.nowcoder.com/practice/bcaf710fb58a44e1b678a890e6e90d7c
#include <stdio.h> int main() { int a,b; int he; int i; scanf("%d %d",&a,&b); he = a%100+b%100; printf("%d",he%100); }
kiki算数
https://www.nowcoder.com/practice/bcaf710fb58a44e1b678a890e6e90d7c
#include <stdio.h> int main() { int a,b; int he; int i; scanf("%d %d",&a,&b); he = a%100+b%100; printf("%d",he%100); }
相关推荐