编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f; for(a=100;a<=999;a++) { b=a%10…… 题解列表 2021年10月21日 0 点赞 0 评论 413 浏览 评分:0.0
编写题解 1015: [编程入门]求和训练 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int i,d,u; float result=0.0,o=0.0,p=0.0…… 题解列表 2021年10月21日 0 点赞 0 评论 213 浏览 评分:0.0
题解 1475: 蓝桥杯基础练习VIP-高精度加法 摘要:解题思路:这个循环很有意思注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[105]; char b[105]…… 题解列表 2021年10月21日 0 点赞 0 评论 211 浏览 评分:0.0
编写题解 1125: C语言训练-委派任务* 摘要:解题思路:恶心的题目利用1和0表示去或者不去,循环一直套,判断条件稍微注意一点就好注意事项:参考代码:import java.util.Scanner;public class Main { p…… 题解列表 2021年10月21日 0 点赞 1 评论 346 浏览 评分: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 评论 347 浏览 评分:0.0
电导流的矩形(C语言) 摘要: 电导流的矩形(C语言) #include int main() { #include int main() { int i,n,x,y,x…… 题解列表 2021年10月21日 0 点赞 0 评论 275 浏览 评分: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 评论 198 浏览 评分: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 评论 280 浏览 评分:9.9
DNA 最易理解解法 摘要:解题思路:观察发现,以a-1行为循环单位,循环b次之后还剩一行。我们把同时分为两部分,xunhuanb次和最后一行。我们可以先定义一个字符串型数组,每个元素都为空元素,然后用循环把对应的元素改为‘X’…… 题解列表 2021年10月21日 0 点赞 0 评论 223 浏览 评分: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 评论 255 浏览 评分:0.0