二级C语言-分段函数-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { double x,y; scanf("%lf",&x); if(x<0){ y…… 题解列表 2021年02月04日 0 点赞 0 评论 466 浏览 评分:0.0
拆分位数-题解(C语言代码) 摘要:解题思路:1,运用数学知识考虑如何将三位数拆分。2,将数学运算方式转化为C语言。注意事项:/ % 的使用(即学会熟练运用C语言运算符)。参考代码:#include<stdio.h>int mai…… 题解列表 2021年02月04日 0 点赞 0 评论 322 浏览 评分:0.0
二级C语言-温度转换-题解(C语言代码) 摘要:#include<stdio.h> int main() { int i,f; for(i=-100;i<=150;i=i+5){ f=(i*9)/5+32; printf("…… 题解列表 2021年02月04日 0 点赞 0 评论 520 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int n,a[10][10]; int i,j,m,k; int max; m=…… 题解列表 2021年02月04日 0 点赞 0 评论 766 浏览 评分:0.0
蓝桥杯算法提高VIP-排列数-题解(Python代码)迭代器 摘要:解题思路:无注意事项:注意迭代器的使用方法参考代码:import itertools n = int(input()) string = "0123456789" temp = iterto…… 题解列表 2021年02月04日 0 点赞 0 评论 505 浏览 评分:0.0
A+B for Input-Output Practice (V)-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n; cin >> n; int i, j, m, s(0), a; …… 题解列表 2021年02月04日 0 点赞 0 评论 405 浏览 评分:0.0
[编程入门]宏定义之找最大数-题解(C语言代码) 摘要:```cpp #include #define m(a,b,c) (a>b?a:b)>(b>c?b:c)?maxn= (a>b?a:b):maxn= (b>c?b:c) using namesp…… 题解列表 2021年02月04日 0 点赞 0 评论 333 浏览 评分:0.0
蓝桥杯基础练习VIP-高精度加法-题解(C++代码) 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; int main() …… 题解列表 2021年02月04日 0 点赞 0 评论 351 浏览 评分:0.0
[编程入门]Sn的公式求和-题解(C++代码) 摘要:简单的嵌套循环 ```cpp #include using namespace std; int n,sum,cnt,day; int main(){ cin>>n; for(int…… 题解列表 2021年02月05日 0 点赞 0 评论 417 浏览 评分:0.0
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int xun(int a);int xun1(int a);int xun(int a){//10的(x-1)次方 int i…… 题解列表 2021年02月05日 0 点赞 1 评论 348 浏览 评分:0.0