蓝桥杯算法提高VIP-输出九九乘法表 题解(c++直接输入,简单啦) 摘要:解题思路:直接输出啦,还用说明么!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int main(){ printf(" Nine-b…… 题解列表 2022年05月16日 0 点赞 0 评论 466 浏览 评分:0.0
ASCII码计算数字个数 摘要:解题思路:使用ASCII码来判断是否为数字字母之类的,应该算是一个比较笨的方法了。需要使用ord()来调出每个字符的ASCII码,然后根据0的ASCII为48,9为57来划定判断范围。当然了看了其他题…… 题解列表 2022年05月16日 0 点赞 0 评论 587 浏览 评分:0.0
A+B for Input-Output Practice (V) 摘要:#include void main() { int a=0,b=0,i=0,k,j=0,x; scanf("%d",&x); while(x--) { scanf("%…… 题解列表 2022年05月17日 0 点赞 0 评论 315 浏览 评分:0.0
A+B for Input-Output Practice (VI) 摘要:#include void main() { int a=0,b=0,i=0,k,j=0,x; while(~scanf("%d",&a)) { while(a--) …… 题解列表 2022年05月17日 0 点赞 0 评论 360 浏览 评分:0.0
A+B for Input-Output Practice 摘要:#include void main() { int a=0,b=0,s=0,i=0; scanf("%d",&a); while(a--) { scanf("%d",&b…… 题解列表 2022年05月17日 0 点赞 0 评论 358 浏览 评分:0.0
递增三元组 摘要:解题思路:前缀和形式注意事项:参考代码:# 前缀和 n=int(input()) als=list(map(int,input().split())) bls=list(map(int,inpu…… 题解列表 2022年05月17日 0 点赞 0 评论 361 浏览 评分:0.0
[编程入门]链表之报数问题 题解(c++简单) 摘要:解题思路:没什么好说的题啦。注意:我没用链表!注意事项:循环从2开始。参考代码:#include<bits/stdc++.h>using namespace std;int n,s=0;int mai…… 题解列表 2022年05月17日 0 点赞 0 评论 388 浏览 评分:0.0
题解 1393: 钟神赛车 sort 摘要:#include<iostream> #include<algorithm> using namespace std; int main() { int a[1100],b[1100]…… 题解列表 2022年05月17日 0 点赞 0 评论 383 浏览 评分:0.0
蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm> using namespace std;long long…… 题解列表 2022年05月17日 0 点赞 0 评论 460 浏览 评分:0.0
1978: 分类计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long b,a;int main(){ cin>>a>>b; …… 题解列表 2022年05月17日 0 点赞 0 评论 432 浏览 评分:0.0