回文数 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2022年06月08日 0 点赞 0 评论 434 浏览 评分:9.9
蓝桥杯2013年第四届真题-错误票据 摘要:解题思路:首先,Scanner是一个扫描器,它扫描数据都是去内存中一块缓冲区中进行扫描并读入数据的,而我们在控制台中输入的数据也都是被先存入缓冲区中等待扫描器的扫描读取。这个扫描器在扫描过程中判断停止…… 题解列表 2022年06月08日 0 点赞 0 评论 468 浏览 评分:0.0
我觉得这样写挺傻的#密码截获 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int huiwen(char a[], int i, int j){ int r=i;…… 题解列表 2022年06月07日 0 点赞 0 评论 410 浏览 评分:5.2
二维数组转置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],b[3][3]; int i,j; for(i=0;i<3;i++) { for(j=…… 题解列表 2022年06月07日 0 点赞 1 评论 289 浏览 评分:6.0
1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,re,l; scanf("%d",&a); re=a; l=0; w…… 题解列表 2022年06月07日 0 点赞 0 评论 244 浏览 评分:0.0
特殊的质数肋骨 (Java代码) 摘要:import java.util.Scanner; public class Main{ static int n; public static void main(String…… 题解列表 2022年06月07日 0 点赞 0 评论 397 浏览 评分:0.0
第九届真题-次数差 (Java代码) 摘要:import java.util.HashMap; import java.util.Scanner; public class Main { public static void…… 题解列表 2022年06月07日 0 点赞 0 评论 338 浏览 评分:9.9
自定义函数之字符串反转,C++解题 摘要:解题思路:调用C++自带的reverse函数注意事项:头文件algorithm参考代码:#include <iostream>#include<algorithm>using namespace st…… 题解列表 2022年06月07日 0 点赞 0 评论 326 浏览 评分:0.0
Python题解阶乘求和 摘要:解题思路:注意事项:参考代码:s,k=1,1n=int(input())for i in range(2,n+1): k*=i s+=kprint(s)…… 题解列表 2022年06月07日 0 点赞 0 评论 469 浏览 评分:0.0
Python题解字符串分类统计 摘要:解题思路:注意事项:参考代码:zm,sz,kg,qt=0,0,0,0s=input()for c in s: if c>='a' and c<='z' or c>…… 题解列表 2022年06月07日 0 点赞 0 评论 463 浏览 评分:6.0