文字列練習22_緊急措置
1603 ワード
/*
Name: 22_
Author:
Description:
, , 、 email 。
( ), email。 , 。
: email , 。 : , 。
email , 50 、 ‘@’ 。
N,N(0 < N < 10000)。
N , , :
email
。 、 、email , 50 。
, , : , ( )。
, empty。
1:
[email protected]
5
helloKitty iLoveCats [email protected]
2012 maya2012 [email protected]
KittyCat 5iKitty [email protected]
program password [email protected]
whoAmi Feb.29$ [email protected]
2:
[email protected]
1
2012 maya2012 [email protected]
1:
helloKitty IlOVEcATS
KittyCat 5IkITTY
whoAmi fEB.29$
2:
empty
*/
#include
#include
#include
#include
using namespace std;
const int N = 51;
char email[N],name[N],pwd[N],e[N];
int main()
{
gets(email);
int n, s=0;
cin >> n;
for (int i=0; i> name >> pwd >> e;
if (strcmp(email, e) == 0)
{
s++;
cout << name << " ";
for (int j=0; pwd[j]!='\0'; j++)
{
if (pwd[j]>='a' && pwd[j]<='z')
cout << char(pwd[j]-32);
else if (pwd[j]>='A' && pwd[j]<='Z')
cout << char(pwd[j]+32);
else
cout << pwd[j];
}
cout << endl;
}
}
if (s == 0)
cout << "empty" << endl;
return 0;
}