二级C语言-阶乘公式求职 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ double n,k,b,c; scanf("%lf",&n); double fact(dou…… 题解列表 2021年10月14日 0 点赞 0 评论 410 浏览 评分:9.9
A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,m,i,j; int a[100]; scanf("%d",&n); for(m…… 题解列表 2021年10月14日 0 点赞 0 评论 745 浏览 评分:9.9
题目 1465: 蓝桥杯基础练习VIP-回形取数(C++循环解决) 摘要: #include using namespace std; #define IOS ios::sync_with_stdio(false); const int inf = 0x3f…… 题解列表 2021年10月14日 0 点赞 0 评论 511 浏览 评分:9.9
[编程入门]最大公约数与最小公倍数--小白的题解(C语言代码) 摘要:解题思路:纯小白,入坑几个星期(有错误请谅解) 一个非常简单容易理解的方法.先接受两个数(当然是废话)然后判断接受的两个数大小关系为什么要判断?因为最大公约数小于大的那个数以此来限制接下来for循环的…… 题解列表 2021年10月14日 0 点赞 0 评论 519 浏览 评分:9.9
编写题解 2629: 数学题(快速幂解法) 摘要:typedef long long ll; #include <iostream> using namespace std; ll fast_pwoer(ll base,ll index,ll …… 题解列表 2021年10月15日 0 点赞 0 评论 894 浏览 评分:9.9
C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ int m,n,i,j; char a[80]; get…… 题解列表 2021年10月15日 0 点赞 0 评论 446 浏览 评分:9.9
[编程入门]数组插入处理-题解(python代码) 摘要:参考代码:A = list(map(int,input().split())) #将第一次输入的元素以整形放入列表 A.append(int(input())) #将第二次输入的一个元素以整形加入…… 题解列表 2021年10月15日 0 点赞 0 评论 1018 浏览 评分:9.9
汽水瓶-题解(C语言代码)(写一些小步骤,望得到大家支持) 摘要:解题思路:我第一眼看到这题还以为很难,在草稿上列一下就发现了特点,以下是我思路: 小张空瓶数: 题解列表 2021年10月15日 0 点赞 0 评论 377 浏览 评分:9.9
C++蛇行矩阵 摘要:解题思路:找到每个数与行数、列数的关系注意事项:注意每个数与行数、列数的关系参考代码:#include<iostream>using namespace std;int main(){ int …… 题解列表 2021年10月16日 0 点赞 0 评论 463 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计 摘要:通过循环进行分析空格;通过空格加一来算出单词个数参考代码:#include<stdio.h> #include<string.h> int main(){ int b,c,d=1; cha…… 题解列表 2021年10月16日 0 点赞 0 评论 358 浏览 评分:9.9