感谢支持,谢谢你们的支持 摘要:解题思路:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch(n) { …… 题解列表 2023年05月20日 0 点赞 0 评论 251 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a<=b &…… 题解列表 2023年05月20日 0 点赞 0 评论 327 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:偷懒一下,写一个函数注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string xh,nam…… 题解列表 2023年05月20日 0 点赞 0 评论 268 浏览 评分:0.0
只能说,牛啊,要更加努力学习了 摘要:``详见代码即可 #include #include int main() { int f[1000]; int g[100…… 题解列表 2023年05月20日 0 点赞 0 评论 292 浏览 评分:0.0
2885: 矩阵转置 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月20日 0 点赞 0 评论 386 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 325 浏览 评分:0.0
找出最高高分数的学生姓名 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年05月21日 0 点赞 0 评论 400 浏览 评分:0.0
编写题解 2911: 连续出现的字符 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] arg…… 题解列表 2023年05月21日 0 点赞 0 评论 368 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路注意事项:参考代码:#include<stdio.h>int main(void){ int a; int w, q, b, s, g;//分别为万、千、百、十、个 scan…… 题解列表 2023年05月21日 0 点赞 0 评论 303 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年05月21日 0 点赞 0 评论 325 浏览 评分:0.0