感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,n ,sum=0; cin>>m>…… 题解列表 2023年07月08日 0 点赞 0 评论 193 浏览 评分:0.0
百钱白鸡最简单方法 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ printf("cock=0,hen=25,chicken=75\n…… 题解列表 2023年07月08日 0 点赞 0 评论 423 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,one=0,five=0,ten=0…… 题解列表 2023年07月08日 0 点赞 0 评论 421 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n ; cin>>a>>n; …… 题解列表 2023年07月08日 0 点赞 0 评论 225 浏览 评分:0.0
三目运算符闰年判断 摘要:代码:#include <stdio.h>#define LEAP_YEAR(y) (y%400 ==0 ? printf("L") : ((y%4 ==0 && y%100 != 0) ? prin…… 题解列表 2023年07月08日 0 点赞 0 评论 224 浏览 评分:0.0
回文日期(c++) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ char arr[8]; scanf("…… 题解列表 2023年07月08日 0 点赞 0 评论 368 浏览 评分:0.0
1118: Tom数,简洁易懂 摘要:##1118: Tom数,简洁易懂 ```cpp #include using namespace std; int main(){ long long a;//注意,这里要用long l…… 题解列表 2023年07月08日 0 点赞 0 评论 373 浏览 评分:0.0
奖学金(利用结构体和sort) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm>//利用sort排序 using namespace std; struct St…… 题解列表 2023年07月09日 0 点赞 0 评论 232 浏览 评分:0.0
[python] 1001: [编程入门]第一个HelloWorld程序 摘要:方法一: print("**************************") print("Hello World!") print("**********************…… 题解列表 2023年07月09日 0 点赞 0 评论 425 浏览 评分:0.0
1002: [编程入门]三个数最大值 (python代码) 摘要:方法一 a, b, c = map(int, input().strip().split()) sum=[a, b, c] sum.sort() print(sum[2]) …… 题解列表 2023年07月09日 0 点赞 0 评论 600 浏览 评分:0.0