题解列表

筛选

筛排处理 (C语言代码)

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

简单的事情 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long c(int n,int m){ long long s=1; int i,j; if((n-m)>m)   m=n-……

日期排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct y_m_d{ int year; int month; int day;}date[3001];int main(){ i……