HDU1090

http://acm.hdu.edu.cn/showproblem.php?pid=1090

c++代码:

#include <iostream>
using namespace std;
int
main(int argc, char *argv[])
{

    int
T,a,b;
    cin>>T;
        while
(T--){
        cin>>a>>b;
        cout<<a+b<<endl;
            }

    return
0;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-08
  • 2021-07-07
  • 2021-12-15
  • 2022-01-15
  • 2022-12-23
相关资源
相似解决方案