后缀子串排序 stl 简单解法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using namespace std;// 全局…… 题解列表 2024年12月05日 0 点赞 0 评论 29 浏览 评分:0.0
C语言 简单代码 强行解题 一个for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intk=0,record=0; &n…… 题解列表 2024年12月05日 0 点赞 0 评论 33 浏览 评分:0.0
b每次左移一位,为a的个位数求模留出空间 摘要:解题思路:建立新变量b=0。由于b的值是累加不断更新,因此初始值需要是0。循环逻辑:b每次左移一位,为a的个位数求模留出空间。数值更新:a每次同样左移,不断保存前一位的值,回溯到上面的循环里。参考代码…… 题解列表 2024年12月06日 0 点赞 0 评论 22 浏览 评分:0.0
循环每一位的值,用%10求余+/10更新;初始值比较需要另设n保存 摘要:解题思路:1.循环每一位的值,用%10求余+/10更新。2.中间值需要用count储存,加入if判断。3.while会让原始值降至0,因此初始值的比较需要另设n保存。参考代码:#include<…… 题解列表 2024年12月06日 0 点赞 0 评论 19 浏览 评分:0.0
C语言代码 结构体+两个for循环解决 摘要:解题思路: 题目怎么说就怎么写就行,不需要太多复杂的理解,知道我们如果没有改到一个任何密码,就说明没有“你”的账号,就输出empty就行了注意事项: 我觉得这个题目最大的难点可能在于,什么时…… 题解列表 2024年12月06日 0 点赞 0 评论 28 浏览 评分:0.0
题解 1012: [编程入门]字符串分类统计新手方法 摘要:#include <stdio.h> int main () { char ch[200]; int i =&nbs…… 题解列表 2024年12月06日 0 点赞 0 评论 354 浏览 评分:0.0
1721: 谁是你的潜在朋友 简单易懂 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月06日 0 点赞 0 评论 29 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self,real=0,imag=0): &n…… 题解列表 2024年12月06日 0 点赞 0 评论 24 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self, real1, …… 题解列表 2024年12月06日 0 点赞 0 评论 24 浏览 评分:0.0
向量点积计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a[n],b[n],s,sum=0; &nbs…… 题解列表 2024年12月06日 0 点赞 0 评论 46 浏览 评分:0.0