1035 Password (20 分)
 

To prepare for PAT, the judge sometimes has to generate random passwords for the users. The problem is that there are always some confusing passwords since it is hard to distinguish 1 (one) from l (L in lowercase), or 0 (zero) from O (o in uppercase). One solution is to replace 1 (one) by @0 (zero) by %l by L, and O by o. Now it is your job to write a program to check the accounts generated by the judge, and to help the juge modify the confusing passwords.

Input Specification:

Each input file contains one test case. Each case contains a positive integer N (≤), followed by N lines of accounts. Each account consists of a user name and a password, both are strings of no more than 10 characters with no space.

Output Specification:

For each test case, first print the number M of accounts that have been modified, then print in the following M lines the modified accounts info, that is, the user names and the corresponding modified passwords. The accounts must be printed in the same order as they are read in. If no account is modified, print in one line There are N accounts and no account is modified where N is the total number of accounts. However, if N is one, you must print There is 1 account and no account is modified instead.

Sample Input 1:

3
Team000002 Rlsp0dfa
Team000003 perfectpwd
Team000001 R1spOdfa

Sample Output 1:

2
Team000002 RLsp%dfa
Team000001 R@spodfa

Sample Input 2:

1
team110 abcdefg332

Sample Output 2:

There is 1 account and no account is modified

Sample Input 3:

2
team110 abcdefg222
team220 abcdefg333

Sample Output 3:

There are 2 accounts and no account is modified

题解:

题目大意: 给你N个用户名和密码,要求把1转换成@,0 转换成%,l(L的小写)转换成L,O转换成o。
解题思路: 没啥弯弯绕绕的,直接挨个判断就行了,注意最后的输出就好 。

AC代码:

#include<bits/stdc++.h>
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<map>
#include<string>
#include<cstring>
using namespace std;
using namespace std;
struct node{
string nm;
char s[];
}a[];
int n;
int main(){
string nm;
char p[];
cin>>n;
int f=;
int k=;
for(int i=;i<=n;i++){
cin>>nm>>p;
int l=strlen(p);
f=;
for(int j=;j<l;j++){
if(p[j]==''){
f=;
p[j]='@';
}
if(p[j]==''){
f=;
p[j]='%';
}
if(p[j]=='l'){
f=;
p[j]='L';
}
if(p[j]=='O'){
f=;
p[j]='o';
}
}
if(f){
a[++k].nm=nm;
for(int j=;j<l;j++){
a[k].s[j]=p[j];
}
}
}
if(!f&&n==){
cout<<"There is 1 account and no account is modified";
}else if(!f){
cout<<"There are "<<n<<" accounts and no account is modified";
}else{
cout<<k<<endl;
for(int i=;i<=k;i++){
cout<<a[i].nm<<" "<<a[i].s<<endl;
}
}
return ;
}

最新文章

  1. javascript的一些知识
  2. LeetCode:N-Queens I II(n皇后问题)
  3. 4、解决native库不兼容
  4. .net 的 Url 中文加密
  5. AIX主机信任关系配置
  6. 学习W3SCHOOL 表单验证
  7. 1076. Forwards on Weibo (30)
  8. WinCE设置多国语言支持
  9. hive 中的Sort By、 Order By、Cluster By、Distribute By 区别
  10. Creating Shazam in Java
  11. PHP利用超级全局变量$_POST来接收表单数据。
  12. 新的学生说说我是如何靠APP发展赢得了亿万
  13. 【Android】九宫格实现
  14. Winform数据库连接app.config文件配置
  15. Linux 细节(杂)
  16. SQL Server tempdb 数据库位置迁移
  17. vuex使用示例
  18. java锁的简化
  19. 制作高仿QQ的聊天系统(下)—— Adapter &amp; Activity
  20. js 获取地址栏最后一个文件名称

热门文章

  1. 让你弄懂 call、apply、bind的应用和区别
  2. rhel7.0替换centos yum源
  3. fsLayuiPlugin树+数据表格使用
  4. 定时器 间隔调用setInterval
  5. [CSS] Conditionally Assign Style to a Parent Element with Focus-Within Pseudo-class
  6. [GraphQL] Set variable and default value &amp; alias
  7. maven-pom文件的scope作用域
  8. PostgreSQL 数据目录结构
  9. MySQL 事务 MVCC 版本链
  10. Intellij IDEA常用配置记录