Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

Gray-Ice

个人博客兼个人网站

因为这个问题太容易了,所以直接上代码吧。

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <fstream>

using namespace std;

int main(void)
{
ifstream ifs("./c1.txt");
char ch;
ifs >> ch;
cout << ch << endl;
return 0;
}

输出结果就不展示了,反正就是这么一回事。
这么容易的事我却没想到。
本篇完。

评论



愿火焰指引你