题解列表

筛选

P1000 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入两个自然数,输出他们的和  */#include <stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print……