题解列表

筛选

简单的a+b (C语言代码)

摘要:#include <stdio.h>int main(void){        int a=0,b=0;        while (scanf("%d%d",&a,&b)==2)  //判断是否输……