题解列表

筛选

反正是对的

摘要:解题思路:三目运算符嵌套注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c;    scanf("%d%d%d",&a,&b,&c);    a>b……

简单实现字符串连接

摘要:解题思路:个人思路比较简单(可能我比较菜)注意事项:每完成一次连接,最后一个字符要变成&#39;\0&#39;参考代码:#include<stdio.h>#include<string.h>conne……

[python]动态规划&遍历

摘要:# 问题描述 ![在这里插入图片描述](https://img-blog.csdnimg.cn/e2212520b81a4e519572ca74fb4d371d.png?x-oss-process=……

还行,一般般吧

摘要:解题思路:注意事项:参考代码:lst1=[list(map(int,input().split()))for i in range(3)]lst2=[]for m in range(3):    fo……

人民币为什么没有20.。。。

摘要:解题思路:        先把人民币的面值都定义出来,然后看题目是多组输入,所以就要用到while来输入多组                      输入一个n表示人数,后面再输入n个人的工资,题目……

十->二进制转换

摘要:```cpp #include #include #include typedef struct SNode{ long long data; struct SNode *ne……