C语言 破解简单密码 算法简单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>void fun(char s[]){ int i; …… 题解列表 2023年02月23日 0 点赞 0 评论 418 浏览 评分:0.0
C语言链表解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h> typedef struct Link{ int data; struct Link *next; }Link; //循…… 题解列表 2023年02月23日 0 点赞 0 评论 420 浏览 评分:0.0
记录解题过程。 摘要:解题思路: 注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x1, x2,x3,x4; d…… 题解列表 2023年02月23日 0 点赞 0 评论 424 浏览 评分:0.0
简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[25],str2[25]; gets(str); char…… 题解列表 2023年02月23日 0 点赞 0 评论 409 浏览 评分:0.0
借鉴楼上的 存下来 以后多看看 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;char a[1000];int b[1000],c[1000],d[1000],k…… 题解列表 2023年02月23日 0 点赞 0 评论 412 浏览 评分:0.0
简单点自由下落问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>float geat(int k){ float s=1.0; float a=1/2.0; for(int i=0;i<k…… 题解列表 2023年02月23日 0 点赞 0 评论 323 浏览 评分:0.0
自守数问题 摘要:解题思路:注意事项:用long型,不然会超出范围参考代码:public class Main { public static void main(String[] args) { …… 题解列表 2023年02月23日 0 点赞 0 评论 434 浏览 评分:0.0
用简单素数筛选法求N以内的素数。 摘要:n = int(input()) #输入n 值for i in range(2,n+1): #循环 1 ——n for j in range(2,i): #循环 2 —— i …… 题解列表 2023年02月24日 0 点赞 0 评论 362 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 摘要:解题思路:注意事项:参考代码:m,n=map(int,input().strip().split()) g=s=yh=er=jg=0 g=n%10 s=n//10 yh=m*g er=s*m…… 题解列表 2023年02月24日 0 点赞 0 评论 482 浏览 评分:0.0
简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>//判断是否为闰年 int leap(int n) { if((n%4==0&&n%100!=0)||n%4…… 题解列表 2023年02月24日 0 点赞 0 评论 477 浏览 评分:0.0