题解列表

筛选

电报加密;

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    string a;   whil……

定义宏,判断是否为闰年

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define LEAP_YEAR(y)  y%100 ==0 && y%4 ==0 && y……