Reading and Writing Files
We need some way to actually get data from the filesystem so we can process it, and write it back when we’re done 我们需要某种方法从文件系统中实际获取数据,以便处理它,并在完成后将其写回来
use std::fs;std::f…
判断某年是否是闰年。
输入格式:
输入只有一行,包含一个整数a(0 < a < 3000)
输出格式:
一行,如果公元a年是闰年输出Y,否则输出N
输入样例:
2006输出样例:
N
#include<bits/stdc.h>
using namespace std;
int main()
{in…