P1603 斯诺登的密码
Posted Kunkun只喝怡宝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1603 斯诺登的密码相关的知识,希望对你有一定的参考价值。
代码
用cin输入字符串s,因为cin以空格符为输入终止符,所以就能依次提取每个单词,知道输入句号停止输入。
然后用数组a装提取出来的数,然后用一个冒泡排序输出,注意输出的时候要以域宽为2 输出。
#include<bits/stdc++.h>
using namespace std;
void f(int *a,int n);
int main(){
string s;
int a[6],i=0,j;
while(s!="."){
cin>>s;
if(s=="one"||s=="another"||s=="a"||s=="first"){
a[i++]=1;
}else if(s=="two"||s=="both"||s=="second"){
a[i++]=4;
}else if(s=="three"||s=="third"){
a[i++]=9;
}else if(s=="four"){
a[i++]=16;
}else if(s=="five"){
a[i++]=25;
}else if(s=="six"){
a[i++]=36;
}else if(s=="eleven"){
a[i++]=49;
}else if(s=="eight"){
a[i++]=64;
}else if(s=="nine"){
a[i++]=81;
}else if(s=="eleven"){
a[i++]=21;
}else if(s=="twelve"){
a[i++]=44;
}else if(s=="thirteen"){
a[i++]=69;
}else if(s=="fourteen"){
a[i++]=96;
}else if(s=="fifteen"){
a[i++]=25;
}else if(s=="sixteen"){
a[i++]=56;
}else if(s=="seventeen"){
a[i++]=89;
}else if(s=="eighteen"){
a[i++]=24;
}else if(s=="nineteen"){
a[i++]=61;
}
}
if(i==0) cout<<0;
else f(a,i);
return 0;
}
void f(int *a,int n){
int i,j,t;
for(i=n-1;i>0;i--)
for(j=0;j<i;j++){
if(a[j]>a[j+1]){
t=a[j];a[j]=a[j+1];a[j+1]=t;
}
}
for(i=0;i<n;i++){
if(i==0) cout<<a[i];
else printf("%02d",a[i]);
}
}
以上是关于P1603 斯诺登的密码的主要内容,如果未能解决你的问题,请参考以下文章