A+B for Input-Output Practice (II) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h" int main() { int n; scanf("%d",&n); while(n>0) { int a,b; s…… 题解列表 2017年07月28日 0 点赞 0 评论 808 浏览 评分:0.0
A+B for Input-Output Practice (II) (C语言代码) 摘要:#include <stdio.h>int main(){ int a,b,n; scanf("%d",&n); while (n--) { scanf("%d%d",&a,&b); printf…… 题解列表 2017年07月12日 0 点赞 0 评论 872 浏览 评分:0.0