题解 1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:这个循环很有意思注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[105]; char b[105]…… 题解列表 2021年10月21日 0 点赞 0 评论 328 浏览 评分:0.0
编写题解 1125: C语言训练-委派任务* 摘要:解题思路:恶心的题目利用1和0表示去或者不去,循环一直套,判断条件稍微注意一点就好注意事项:参考代码:import java.util.Scanner;public class Main { p…… 题解列表 2021年10月21日 0 点赞 1 评论 454 浏览 评分:9.9
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long a=1,n,s=0,i;scanf("%ld",&n);for(i=1;i<=n;i++){ a*=i…… 题解列表 2021年10月21日 0 点赞 0 评论 577 浏览 评分:0.0
电导流的矩形(C语言) 摘要: 电导流的矩形(C语言) #include int main() { #include int main() { int i,n,x,y,x…… 题解列表 2021年10月21日 0 点赞 0 评论 365 浏览 评分:9.9
题解 1474: 蓝桥杯基础练习VIP-阶乘计算 摘要:解题思路:大数运算使用数组来存取数组,数组范围要足够大注意事项:参考代码:#include<stdio.h>int main(){ int n,f,count=1,i,j,k,t; int a[100…… 题解列表 2021年10月21日 0 点赞 0 评论 319 浏览 评分:0.0
电导流的矩形(C语言) 摘要:#include<stdio.h>int main(){ int i,n,x,y,x1,y1,max=0,sum,a; int m[100][4]; scanf("%d",&n); …… 题解列表 2021年10月21日 0 点赞 0 评论 378 浏览 评分:9.9
DNA 最易理解解法 摘要:解题思路:观察发现,以a-1行为循环单位,循环b次之后还剩一行。我们把同时分为两部分,xunhuanb次和最后一行。我们可以先定义一个字符串型数组,每个元素都为空元素,然后用循环把对应的元素改为‘X’…… 题解列表 2021年10月21日 0 点赞 0 评论 325 浏览 评分:0.0
编写题解 1013: [编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,Sn=0,i=0,a=0,b=0,c=2,d=1; scanf("%d",&n); for(i=1;…… 题解列表 2021年10月21日 0 点赞 0 评论 351 浏览 评分:0.0
题解 1046: [编程入门]自定义函数之数字后移 摘要:参考代码:#include<stdio.h>#define N 20void move(int *a,int n,int m);void main(){ int a[N]; int i,n…… 题解列表 2021年10月21日 0 点赞 0 评论 307 浏览 评分:9.9
编写题解 1124: C语言训练-大、小写问题 摘要:解题思路:因为要对字符串做更改,就直接想到了StringBuffer,直接截取全部字符串,自动从大变小就行注意事项:注意转变要在输出里面,因为原字符串不会变参考代码:import java.util.…… 题解列表 2021年10月21日 0 点赞 0 评论 446 浏览 评分:0.0