2116: 信息学奥赛一本通T1307-高精度乘法 摘要: ```javascript #include using namespace std; const int N=2e+3+10; int x[N]={0},y[N]={0},sum[N]=…… 题解列表 2021年03月19日 0 点赞 0 评论 476 浏览 评分:0.0
题解(带表格版) 摘要: import java.util.ArrayList; Scanner scanner…… 题解列表 2021年03月19日 0 点赞 0 评论 531 浏览 评分:0.0
1537: 蓝桥杯算法提高VIP-栅格打印问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int h, w; scanf("%d %d", &h, &w); if(h <=0 || …… 题解列表 2021年03月19日 0 点赞 0 评论 703 浏览 评分:0.0
[编程入门]结构体之时间设计(C语言代码)简单易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct date{ int year; int month; int day;};int Nowday(str…… 题解列表 2021年03月19日 0 点赞 0 评论 409 浏览 评分:0.0
Minesweeper c++代码 摘要:解题思路:将'.'转化为'0',找到'*'后,周围加+。注意事项:check函数中,不需要检测有无越界,输出时限界输出。参考代码:#include <i…… 题解列表 2021年03月19日 0 点赞 0 评论 377 浏览 评分:0.0
字符串正反连接代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { char a[100]; int i,n; scanf("%s",&a); n=strl…… 题解列表 2021年03月19日 0 点赞 0 评论 365 浏览 评分:0.0
题解 1048: [编程入门]自定义函数之字符串拷贝 摘要:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>void copy(char str1[],char str2[],int n,in…… 题解列表 2021年03月20日 0 点赞 0 评论 366 浏览 评分:0.0
python解决Tom数 摘要:参考代码:def DigitCount(n): result = 0 while n != 0: result += n % 10 题解列表 2021年03月20日 0 点赞 0 评论 365 浏览 评分:0.0
蓝桥杯][算法提高VIP]五次方数 摘要:# MarkDown编辑器基本使用说明 public class 五次方数 { /** * @param args */ public static void main(…… 题解列表 2021年03月20日 0 点赞 0 评论 737 浏览 评分:0.0
python解决回文数字 摘要:解题思路:思路清晰简单参考代码:# 求数字各位数之和 def DigitCount(n): result = 0 s = str(n) lenth = len(s) …… 题解列表 2021年03月20日 0 点赞 0 评论 401 浏览 评分:0.0