C++简单写法--------------------------------------
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;bool is_leap(int year){ if (……
邪修xxxxxxxxxxxxxxxx
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; &nb……
C++宏定义闰年判断
摘要:解题思路:闰年:能被4但不能被100整除 或 能被400整除注意事项:宏定义换行要用\参考代码:#include<iostream>using name……