题解列表

筛选

好理解的代码

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; string ss="ABCDEFGHIJKLMNOPQRSTUVWXYZ"……

宏定义之闰年判断

摘要:解题思路:大家都知道判断闰年要要求%4==0,%100==0,%400==0;注意事项:L,N是大写参考代码:#include<bits/stdc++.h>using namespace std;in……

1671: 小九九

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int i,j;     for (i=1;i<10;i++)     {       ……

数据结构-字符串连接 题解

摘要:解题思路:直接输入后连接,最后输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string a,b;int main(){ for(……