蓝桥杯基础练习VIP-回形取数 摘要:``` m, n = map(int, input().split()) list = [list(map(int, input().split())) for i in range(m)] l…… 题解列表 2021年10月27日 0 点赞 0 评论 734 浏览 评分:9.9
众数问题C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm>int main(){ int n,s[5000]…… 题解列表 2021年10月27日 0 点赞 0 评论 723 浏览 评分:0.0
这道题测试点有问题,草 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <stdio.h>using namespace std;int main() { int a, b; while…… 题解列表 2021年10月27日 0 点赞 1 评论 875 浏览 评分:9.9
题解 1017: [编程入门]完数的判断 摘要:参考代码:#include<stdio.h>#define N 500void factor(int n);//找出所有因子并按照要求输出void main(){ int i,n;//n为查找范…… 题解列表 2021年10月27日 0 点赞 1 评论 477 浏览 评分:9.9
2019: 滚动的榜单(C语言) 摘要: #include int main() { int i,j,k,n,l; int a[3001],b[3001]; s…… 题解列表 2021年10月27日 0 点赞 0 评论 1172 浏览 评分:6.7
题解 1063: 二级C语言-统计字符 摘要:参考代码:#include<stdio.h>void main(){ char str; int i; int zimu,kongge,shuzi,qita; i=0; …… 题解列表 2021年10月27日 0 点赞 0 评论 1317 浏览 评分:9.9
普通方法(初学者方法) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2021年10月27日 0 点赞 0 评论 569 浏览 评分:6.0
简单的字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10001],k; int i,j,n,l; scanf("%…… 题解列表 2021年10月27日 0 点赞 0 评论 443 浏览 评分:0.0
阶乘数列-记录一下 摘要:#include<stdio.h>int main(){ int i; double j=1,sum=0; for(i=1;i<=30;i++) { j = 题解列表 2021年10月27日 0 点赞 0 评论 582 浏览 评分:0.0
题解 1060: 二级C语言-同因查找 c语言 摘要:解题思路:用event事件来判断是否为为237整除注意事项:无参考代码:#include<stdio.h>int event(int a) { if(a%2==0 &&a%3==0 && a%…… 题解列表 2021年10月27日 0 点赞 0 评论 532 浏览 评分:0.0