题解列表

筛选

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<ctype.h>#include<string.h>int main(){    int i,L;    char c……

宏定义

摘要:#include<stdio.h>#define Swap(a,b) t = b; b = a;a = tint main(){    int a,b,t;    scanf("%d%d",&a,&b……