输出最高分数的学生姓名(java) 摘要:解题思路:注意事项:参考代码:package Fourteen;import java.util.Scanner;public class 输出最高分数的学生姓名 { public static…… 题解列表 2023年05月11日 0 点赞 0 评论 262 浏览 评分:9.9
递归解法,简单好用 摘要:解题思路:10转8的本质是:10进制数对8不断做整除取余//储存余数,直到10进制数小于8,取得最后余数并逆序输出//每次计算的余数,得到完整的8进制数。注意事项:参考代码:#include<stdi…… 题解列表 2023年05月11日 0 点赞 0 评论 176 浏览 评分:0.0
最大值和最小值的差(java) 摘要:解题思路:注意事项:参考代码:package Fourteen;import java.util.Scanner;public class 最大值和最小值的差 { public static v…… 题解列表 2023年05月11日 0 点赞 0 评论 402 浏览 评分:9.9
计算鞍点Java 摘要:import java.util.Scanner;public class 计算鞍点 { public static void main(String[] args) { int[…… 题解列表 2023年05月11日 0 点赞 0 评论 423 浏览 评分:9.9
边长的判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; i…… 题解列表 2023年05月11日 0 点赞 0 评论 187 浏览 评分:0.0
判断回文数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,t=""; cin>>s; …… 题解列表 2023年05月11日 0 点赞 0 评论 236 浏览 评分:0.0
日期换算。。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; switch…… 题解列表 2023年05月11日 0 点赞 0 评论 181 浏览 评分:0.0
计算奇数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t,cnt=0; …… 题解列表 2023年05月11日 0 点赞 0 评论 204 浏览 评分:0.0
1262: 邮局选址问题(模拟退火) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct poit { int x; int y; }p[1…… 题解列表 2023年05月11日 0 点赞 0 评论 231 浏览 评分:0.0
与2无关的数 摘要:解题思路:注意事项:n的取值范围为1000以内参考代码:#include<iostream>using namespace std;int main(){ int n,sum=0; cin…… 题解列表 2023年05月11日 0 点赞 0 评论 175 浏览 评分:0.0