暴力解法(凑字数。。。。。。。 摘要:解题思路:注意事项:参考代码:n=list(input())m=n.copy()n.reverse()c=m+nfor i in c: print(i,end='')…… 题解列表 2022年12月28日 0 点赞 0 评论 407 浏览 评分:0.0
1073: 弟弟的作业 摘要:##1073: 弟弟的作业 ###题目描述 你的弟弟刚做完了“100以内数的加减法”这部分的作业,请你帮他检查一下。每道题目(包括弟弟的答案)的格式为a+b=c或者a-b=c,其中a和b是作业中给…… 题解列表 2022年12月28日 0 点赞 0 评论 526 浏览 评分:0.0
2998: 电影票 摘要:##2998: 电影票 ```c #include int main() { int n; scanf("%d",&n); printf("%d %d",n,10*n); re…… 题解列表 2022年12月28日 0 点赞 0 评论 474 浏览 评分:0.0
三个数找最大值 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2022年12月28日 0 点赞 0 评论 476 浏览 评分:0.0
1016: [编程入门]水仙花数判断 稍稍复杂的循环判断 摘要:解题思路:就是简单循环判断题的加强版,设置范围,然后循环就好了。注意事项:参考代码:for i in range(100,1000): string=str(i) a=string[0] …… 题解列表 2022年12月29日 0 点赞 0 评论 414 浏览 评分:0.0
1042: [编程入门]电报加密 简单的凯撒密码 摘要:解题思路:一看就是凯撒密码,循环替换就正确。注意事项:参考代码:x=input()s=""for i in x: if i>="a" and i<="z" or i>="A" and i<="Z"…… 题解列表 2022年12月29日 0 点赞 0 评论 422 浏览 评分:0.0
[编程入门]阶乘求和 摘要:解题思路:注意事项:用long long int, printf里头用%lld参考代码:#include <stdio.h>long long func(int n){ int j; long lon…… 题解列表 2022年12月29日 0 点赞 0 评论 255 浏览 评分:0.0
超简单题解反置数 摘要:解题思路:此题主要是反置函数的设计,在这里输入参数跟输出参数我都是用String类型,先将输入的String转化为一个StringBuff,利用StringBuff自带的函数进行翻转再将其转化为一个S…… 题解列表 2022年12月29日 0 点赞 0 评论 409 浏览 评分:0.0
蓝桥杯算法训练VIP-回文数 摘要:解题思路:注意事项:参考代码:import java.nio.channels.ScatteringByteChannel;import java.util.Scanner;public class …… 题解列表 2022年12月29日 0 点赞 0 评论 361 浏览 评分:0.0
一看就懂,简单易上手 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,sum,a; while(cin>>n) …… 题解列表 2022年12月29日 0 点赞 0 评论 463 浏览 评分:0.0