题解列表

筛选

一些强迫症的输出

摘要:## 浏览了一些题解,发现输出格式与题目要求不一致,多加了一些代码,调成了与题目要求一致的输出格式//勿喷 ## 代码 #include #include usin……

日期换算--易懂版

摘要:解题思路:注意事项:参考代码:x,y = map(int,input().split()) // 设置一个列表储存2019年每月的天数,2019年是平年,2月份是28天,在最前面加个[0]是为了列表……

题解 2840: 向量点积计算

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll ……

2840: 向量点积计算

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5;ll ……

求三个数的最大值

摘要:解题思路:使用三目运算符运算更加简便注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); ……