2085: 蓝桥杯算法提高VIP-P1003 摘要:解题思路:注意事项:参考代码:a = list(input().strip().split()) b = list(input().strip().split()) for i in a: …… 题解列表 2022年01月13日 0 点赞 0 评论 311 浏览 评分:0.0
结构体之成绩统计2 --指针 摘要:#include<stdio.h> #include<string.h> typedef struct { char sno[20]; char name[20]; int gra…… 题解列表 2022年01月13日 0 点赞 0 评论 324 浏览 评分:0.0
通过c语言的指针来访问和运算 摘要:#include<stdio.h> #include<string.h> typedef struct{ int year; int month; int day; }DAY,*SD…… 题解列表 2022年01月13日 0 点赞 0 评论 300 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:因数和数组要在循环内初始化参考代码:#include<stdio.h>int main() { int n,i,j,t; scanf("%d",&n); for(…… 题解列表 2022年01月13日 0 点赞 0 评论 448 浏览 评分:0.0
没找规律,暴力求解 摘要:#include<stdio.h> #include<math.h> #include<string.h> int main(){ long m; scanf("%ld",&m); …… 题解列表 2022年01月13日 0 点赞 0 评论 346 浏览 评分:0.0
蓝桥杯算法提高VIP-Quadratic Equation 摘要:解题思路:1.公式2.大小顺序输出注意事项:参考代码:#include<iostream> #include<math.h> #include<iomanip> using namespace …… 题解列表 2022年01月13日 0 点赞 0 评论 368 浏览 评分:0.0
1184众数问题 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Demo1184 { public static void main(String[] arg…… 题解列表 2022年01月13日 0 点赞 0 评论 339 浏览 评分:0.0
1482: 蓝桥杯算法提高VIP-Pascal三角 摘要:解题思路: 1.初始化左列和主对角线 2.计算杨辉三角 3.格式输出注意事项: 第三点:格式 setw(int n)是c++中在输出操作中使用的字段宽度设置,设置输出的域宽…… 题解列表 2022年01月13日 0 点赞 0 评论 388 浏览 评分:0.0
1481: 蓝桥杯算法提高VIP-剪刀石头布 摘要:解题思路: 本题一次过 1.善于发现规律注意事项:参考代码:#include<iostream> using namespace std; int main(){ int a…… 题解列表 2022年01月14日 0 点赞 0 评论 550 浏览 评分:0.0
1480: 蓝桥杯算法提高VIP-模拟计算器 摘要:解题思路: 1.使用if-else方法 2.使用switch方法注意事项: 使用while多次测试参考代码://if-else方法 #include<iostream> usin…… 题解列表 2022年01月14日 0 点赞 0 评论 466 浏览 评分:0.0