题解列表

筛选

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j; int a[9],t; scanf("%d",&n); while(n--) { t=0……

日期排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct p{ int a,b,c;}s[1000],t;int main(){ char ss[20]; int i,j,k,……

字符串的输入输出处理 (C语言代码)

摘要:解题思路:前N行原样输出即可,后面的字符可用scanf("%s",a)来自动切割字符串(因为scanf遇到空格键自动结束输入),然后输出注意事项:注意格式!每输出一行要再空一行!参考代码:#inclu……