LJX........................................................ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int x; cin >> x; cout << x…… 题解列表 2023年12月06日 0 点赞 0 评论 370 浏览 评分:9.9
分段函数求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(~scanf("%d", &a)) { if(a < …… 题解列表 2023年12月06日 0 点赞 0 评论 262 浏览 评分:0.0
三个数比较大小 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int *bigger(int *a, int *b){ if(*a >= *b) { return a; …… 题解列表 2023年12月06日 0 点赞 0 评论 145 浏览 评分:0.0
LJX............................................................... 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int n,a,b,sum=0,ans=0; cin>>…… 题解列表 2023年12月06日 0 点赞 0 评论 157 浏览 评分:4.7
LJX........................................................ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,a,sum=1; cin>>a>>n; …… 题解列表 2023年12月06日 0 点赞 0 评论 146 浏览 评分:6.0
LJX ................................................. 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int x,y,n,a=1,b=1; cin>>x>>y…… 题解列表 2023年12月06日 0 点赞 0 评论 231 浏览 评分:7.3
n阶Hanoi塔问题 摘要:解题思路:注意事项:参考代码:def hanoi(n, a, b, c, count): if n > 0: count = hanoi(n-1, a, c, b, count) …… 题解列表 2023年12月06日 0 点赞 0 评论 221 浏览 评分:0.0
题解 2905: 最大值和最小值的差 摘要: #include using namespace std; int a[100000],b[100000],c[1000000],d,e,f,g; int mai…… 题解列表 2023年12月06日 0 点赞 2 评论 167 浏览 评分:6.0
写题解 2903: 不高兴的津津 摘要: #include using namespace std; int a[10],b[10],c[10],d,day; int main(){ for(…… 题解列表 2023年12月06日 0 点赞 0 评论 220 浏览 评分:2.0
2902:输出最高分数的学生姓名 python实现(极简方法) 摘要:解题思路:本来想保存最大值,然后找对应的名字,后面发现找到最大值的时候可以直接用student保存学生的名字,最后直接输出该名字即可。注意事项:没有用到字典。参考代码:n = int(input())…… 题解列表 2023年12月06日 1 点赞 0 评论 264 浏览 评分:0.0