比赛 寒假归来,刮刮油 评测结果 AAAAAAAAAA
题目名称 字符串加密 最终得分 100
用户昵称 サイタマ 运行时间 0.044 s
代码语言 C++ 内存使用 0.37 MiB
提交时间 2016-02-25 20:08:17
显示代码纯文本
#include<fstream>
#include<cstring>
using namespace std;
ifstream fin("strpassword.in");
ofstream fout("strpassword.out");
char ch[100000];
int l=0;
int main()
{
	fin.getline(ch,100000,EOF);
	l=strlen(ch);
	for(int i=0;i<l;i++)
	{
		int as=0;
		int j=7;
		int s[8]={0};
		as=ch[i]-0;
		for(;;)
		{
			if(as==0)
				break;
			else
			{
			    s[j]=as%2;
			    as=as/2;
			    j--;
			}
		}
		for(int w=0;w<=7;w++)
			fout<<s[w];
	}
	fin.close();
	fout.close();
	return 0;
}