题解列表
1537: 蓝桥杯算法提高VIP-栅格打印问题
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int h, w;
scanf("%d %d", &h, &w);
if(h <=0 || ……
[编程入门]结构体之时间设计(C语言代码)简单易懂
摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct date{ int year; int month; int day;};int Nowday(str……
Minesweeper c++代码
摘要:解题思路:将'.'转化为'0',找到'*'后,周围加+。注意事项:check函数中,不需要检测有无越界,输出时限界输出。参考代码:#include <i……
题解 1048: [编程入门]自定义函数之字符串拷贝
摘要:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>void copy(char str1[],char str2[],int n,in……
python解决Tom数
摘要:参考代码:def DigitCount(n):
result = 0
while n != 0:
result += n % 10
蓝桥杯][算法提高VIP]五次方数
摘要:# MarkDown编辑器基本使用说明
public class 五次方数 {
/**
* @param args
*/
public static void main(……
python解决回文数字
摘要:解题思路:思路清晰简单参考代码:# 求数字各位数之和
def DigitCount(n):
result = 0
s = str(n)
lenth = len(s)
……