题解列表

筛选

宏定义之闰年判断

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

好理解的代码

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

[编程入门]宏定义的练习

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){    cin>>a>>b; co……

[编程入门]电报加密 题解

摘要:解题思路:运用了ASCII里的位置就可以做出此题。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){……

1008: [编程入门]成绩评定

摘要:#include<stdio.h> int main() {     int i;     scanf("%d",&i);     if(i>=90){printf("A");}     ……