摘要: /* * Title : A+B(III) * Data : 2016/11/09 * Author : Andrew */ #include #include int main() { std::string str1, str2; while (std::cin >> str1 >> str2) { int a[100], b[100],... 阅读全文
posted @ 2016-11-09 21:24 AndrewLiang 阅读(308) 评论(0) 推荐(0)
摘要: /* * Title : A+B(II) * Data : 2016/11/09 * Author : Andrew */ #include #include int main() { double a, b; while (std::cin >> a >> b) { std::cout << std::setiosflags(std::io... 阅读全文
posted @ 2016-11-09 19:29 AndrewLiang 阅读(186) 评论(0) 推荐(0)
摘要: /* * Title : A+B(I) * Data : 2016/11/09 * Author : Andrew */ #include int main() { int a, b; while (std::cin >> a >> b) { std::cout << a + b << std::endl; } return 0... 阅读全文
posted @ 2016-11-09 19:24 AndrewLiang 阅读(250) 评论(0) 推荐(0)