1772: [编程入门]二进制移位练习 摘要:解题思路:注意事项:参考代码:def two_to_ten(m): j = 0 sum =0 for i in str(m)[::-1]: sum +=…… 题解列表 2021年12月29日 1 点赞 0 评论 448 浏览 评分:0.0
1853--数列排序 摘要:解题思路:注意事项:参考代码:a=int(input())m=input().split()s=[]for i in range(0,len(m)): s.append(int(m[i]))s.…… 题解列表 2021年12月30日 0 点赞 0 评论 395 浏览 评分:0.0
1725: 统计字符-C语言 摘要:```c //统计字符 #include #include #include #define max 100 int main() { char s1[max], s…… 题解列表 2021年12月30日 0 点赞 0 评论 496 浏览 评分:0.0
1726: 字符串的反码-C语言 摘要:```c #include #include #include #define max 100 int main() { char s1[max]; whil…… 题解列表 2021年12月30日 0 点赞 0 评论 396 浏览 评分:0.0
人见人爱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 评论 376 浏览 评分: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 评论 424 浏览 评分:0.0
1798: 汪汪与打针(python) 摘要:while True: try: a,b = map(int,input().split()) if a<120:   题解列表 2021年12月31日 0 点赞 0 评论 407 浏览 评分: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 评论 683 浏览 评分: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 评论 374 浏览 评分:0.0
1678: 数据结构-双向循环链表-C语言 摘要:```c //双向循环链表 #include #include typedef struct node { int data; struct node *prior;…… 题解列表 2021年12月31日 0 点赞 0 评论 541 浏览 评分:0.0