题解列表

筛选

字符串组的使用

摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <string.h>int main (){    int n;    scanf ("%d",&n);    ……

简单利润计算

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or ……

1093: 字符逆序 python

摘要:解题思路:注意事项:参考代码:l = list(input)for i in l[::-1]:print(i,end=&#39;&#39;)……