HashMap 方法,使用java 摘要:解题思路:注意事项:参考代码:import java.util.HashMap; import java.util.Map; import java.util.Scanner; public…… 题解列表 2022年02月02日 0 点赞 0 评论 347 浏览 评分:0.0
题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; void judge(string a, int …… 题解列表 2022年02月02日 0 点赞 0 评论 322 浏览 评分:0.0
编写题解 1039: [编程入门]宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:#include<iostream> #define LEAP_YEAR(y) (y%4==0&&y%100!=0)||(y%100==0&&y%400==0) us…… 题解列表 2022年02月02日 0 点赞 0 评论 375 浏览 评分:0.0
1064: 二级C语言-阶乘数列 摘要:解题思路:比较简单的输出方法。注意事项:1.结果数据比较大,用 double或long double 类型比较合适。 2.使用scientific进行科学计算法输出,需添加…… 题解列表 2022年02月02日 0 点赞 0 评论 387 浏览 评分:0.0
Cylinder(C++代码) 摘要:解题思路:注意事项:1.double类型 2.w>0参考代码:#include <iostream>#define PI 3.141592653589793238#inc…… 题解列表 2022年02月02日 0 点赞 0 评论 629 浏览 评分:0.0
数据结构-静态表的顺序查找(加油,可以的!) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int search(int arry[],int t,int n){ int i=0; arry[-1]=t;//t为要找的值 fo…… 题解列表 2022年02月02日 0 点赞 0 评论 629 浏览 评分:0.0
通过取余,循环来实现各种不同输入情况的对应密码 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; cin…… 题解列表 2022年02月02日 0 点赞 0 评论 341 浏览 评分:0.0
Hifipsysta-1139题-C语言训练-求素数问题(C++代码) 摘要:```cpp #include using namespace std; bool is_prime(int n){ for(int i=2;i>n; for(int…… 题解列表 2022年02月03日 0 点赞 0 评论 358 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std; int main(){ int n,k,i,m; cin>>n; int a[n…… 题解列表 2022年02月03日 0 点赞 0 评论 341 浏览 评分:0.0
最短代码解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,n; scanf("%d",&n); a = 24690; printf("…… 题解列表 2022年02月03日 0 点赞 0 评论 401 浏览 评分:0.0