比赛 寒假归来,刮刮油 评测结果 AAAAAAAAAA
题目名称 字符串加密 最终得分 100
用户昵称 Ceres 运行时间 0.036 s
代码语言 C++ 内存使用 0.28 MiB
提交时间 2016-02-25 20:11:59
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
	ifstream ci("strpassword.in");
	ofstream co("strpassword.out");
	char st[1001];
	int i=0;
	while(!ci.eof())
		ci.get(st,1000);
	while(st[i])
	{
		int w[9]={0,0,0,0,0,0,0,0,0},j=8;
		st[i]+=0;
		while(st[i]!=0)
		{
			w[j--]=st[i]%2;
			st[i]/=2;
		}
		for(int x=1;x<=8;x++)
			co<<w[x];
		i++;
	}
	ci.close();
	co.close();
	return 0;
}