比赛 寒假归来,刮刮油 评测结果 AAAAAAAAAA
题目名称 字符串加密 最终得分 100
用户昵称 烟雨 运行时间 0.024 s
代码语言 C++ 内存使用 0.25 MiB
提交时间 2016-02-25 20:25:34
显示代码纯文本
#include<fstream>
#include<cstring>
using namespace std;
int main()
{
	ifstream cin("strpassword.in");
	ofstream cout("strpassword.out");
	char a[100000];
	int m,l[9]={0},s,z,x,p;
	m=0;s=0;
	cin.getline(a,100000,EOF);
	m=strlen(a);
	for(int i=0;i<m;i++)
	{
		int n=0;
		s=a[i]-0;
		for(int j=8;j>=1;j--)
		{
			z=s%2;
			s=s/2;
			l[j]=z;
			n=j;
	    }
		for(int j=1;j<=8;j++)
			cout<<l[j];
	}
	cin.close();
	cout.close();
	return 0;
}