感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,n ; cin>>a>>n; …… 题解列表 2023年07月08日 0 点赞 0 评论 146 浏览 评分: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 评论 137 浏览 评分:0.0
回文日期(c++) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ char arr[8]; scanf("…… 题解列表 2023年07月08日 0 点赞 0 评论 281 浏览 评分:0.0
1118: Tom数,简洁易懂 摘要:##1118: Tom数,简洁易懂 ```cpp #include using namespace std; int main(){ long long a;//注意,这里要用long l…… 题解列表 2023年07月08日 0 点赞 0 评论 276 浏览 评分:0.0
奖学金(利用结构体和sort) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm>//利用sort排序 using namespace std; struct St…… 题解列表 2023年07月09日 0 点赞 0 评论 175 浏览 评分:0.0
[python] 1001: [编程入门]第一个HelloWorld程序 摘要:方法一: print("**************************") print("Hello World!") print("**********************…… 题解列表 2023年07月09日 0 点赞 0 评论 315 浏览 评分: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 评论 483 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void tongji(char str[100],int out[4]){ int i; …… 题解列表 2023年07月09日 0 点赞 0 评论 152 浏览 评分:0.0
题解: 药房管理 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,n,q,ans=0; cin>>m…… 题解列表 2023年07月09日 0 点赞 0 评论 161 浏览 评分:0.0
药房管理1+1=33333333333 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,n,q,b=0; cin>>m>…… 题解列表 2023年07月09日 0 点赞 0 评论 141 浏览 评分:0.0