[恢]hdu 2096

2011-12-14 05:30:17

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2096

题意:中文。。。

代码:

# include <stdio.h>


int main ()
{
int n, m ;
scanf ("%d", &n) ;
while (~scanf ("%d%d", &n, &m))
printf ("%d\n", (n%100 + m%100) % 100) ;
return 0 ;
}



原文地址:https://www.cnblogs.com/lzsz1212/p/2314558.html