人见人爱A+B(简单易懂) 摘要:解题思路:注意事项:带码的时间复杂度有点长。参考代码:#include<stdio.h>int main(){ int a1,b1,c1; int a2,b2,c2; int a,b,c; i…… 题解列表 2021年12月30日 0 点赞 0 评论 338 浏览 评分:0.0
较简单的电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void main(){ char a[1000]; int i,n; gets(a); n=str…… 题解列表 2021年12月30日 0 点赞 0 评论 369 浏览 评分:0.0
1798: 汪汪与打针(python) 摘要:while True: try: a,b = map(int,input().split()) if a<120:   题解列表 2021年12月31日 0 点赞 0 评论 332 浏览 评分:0.0
1804: 蓝桥杯算法提高- c++_ch02_02 摘要:解题思路:注意事项:参考代码:a,b,c = map(str,input().split()) if c == '+': print(int(a)+int(b),end=&…… 题解列表 2021年12月31日 0 点赞 0 评论 624 浏览 评分:0.0
1805: 蓝桥杯算法提高- c++_ch02_03 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a == b: print(0) else: if a == 0: …… 题解列表 2021年12月31日 0 点赞 0 评论 299 浏览 评分:0.0
1678: 数据结构-双向循环链表-C语言 摘要:```c //双向循环链表 #include #include typedef struct node { int data; struct node *prior;…… 题解列表 2021年12月31日 0 点赞 0 评论 478 浏览 评分:0.0
1727: 首字母大写-C语言 摘要:```c #include #include #define max 100 int main() { char s1[max]; while (gets(s1)!=…… 题解列表 2021年12月31日 0 点赞 0 评论 574 浏览 评分:0.0
C++代码,自定义函数采用指针传入参数输入数组,数组整理for循环找出最大值最小值的索引,循环结束后进行交互即可 摘要:解题思路: * 如何在一个函数中返回数组呢?采用指针。 * https://www.dotcpp.com/wp/746.html * https://www.dotcpp.com/wp/755.htm…… 题解列表 2021年12月31日 0 点赞 0 评论 567 浏览 评分:0.0
1728: 字符串的查找删除-C语言(自己编译器上没错,样例出错求指点) 摘要:```c /*样例中前两行会出现和的额外输入,输出, 其他地方均没错,希望有遇到这个问题的指点一下,其他输出没啥问题 试了两种不同的编译器,均没出现问题,只在平台上出现问题*/ #includ…… 题解列表 2021年12月31日 0 点赞 0 评论 556 浏览 评分:0.0
1851: 求所给范围内水仙花数并排列 摘要:解题思路:注意事项:参考代码:while True: try: m,n = map(int,input().split()) s = 0 &nbs 题解列表 2021年12月31日 0 点赞 0 评论 339 浏览 评分:0.0