完成凯撒加密的第二个步骤,把明文中的小写字母转换成对应的大写字母C++
时间: 2023-12-03 12:47:17 浏览: 115
可以使用标准库中的toupper函数将小写字母转换成对应的大写字母,具体实现如下:
```c++
#include <iostream>
#include <string>
#include <cctype> // 包含toupper函数的头文件
using namespace std;
int main()
{
string plaintext = "hello, world!";
string ciphertext = "";
for (char c : plaintext)
{
if (islower(c)) // 如果是小写字母
{
ciphertext += toupper(c); // 转换成大写字母并添加到密文中
}
else // 如果不是小写字母
{
ciphertext += c; // 直接添加到密文中
}
}
cout << "明文:" << plaintext << endl;
cout << "密文:" << ciphertext << endl;
return 0;
}
```
输出结果为:
```
明文:hello, world!
密文:HELLO, WORLD!
```
相关问题
C++本关任务:要求在题干所给代码框架的基础上,完成凯撒加密的第二个步骤,把明文中的小写字母转换成对应的大写字母。 例如:明文是"Attack in the morning",转换后为"ATTACK IN THE MORNING"。
完成任务的代码如下:
```c++
#include<iostream>
#include<cstring>
using namespace std;
int main()
{
char str[100];
int key;
cout<<"请输入明文:";
cin.getline(str,100);
cout<<"请输入密钥:";
cin>>key;
for(int i=0;i<strlen(str);i++)
{
if(str[i]>='a' && str[i]<='z') //如果是小写字母
{
str[i] = 'A' + (str[i] - 'a' + key) % 26; //转换成大写字母
}
}
cout<<"加密后的密文是:"<<str<<endl;
return 0;
}
```
运行结果示例:
```
请输入明文:Attack in the morning
请输入密钥:3
加密后的密文是:ATTACK IN THE MORNING
```
恺撒加密是一种替代加密方法,根据字母表将明文中的每个字母移动常量位k(密钥),末尾字母则回卷到字母表开头。例如,假设k等于3,则a会被替换D,b会被替换成E,x会被替换为A(这里密文大写)。 例如:明文是"Attack in the morning",密钥k等于3,则密文是"DWWDFN LQ WKH PRUQLQJ"。要求使用c++补充下列代码,使其完成凯撒加密的第二个步骤,把明文中的小写字母转换成对应的大写字母。 例如:明文是"Attack in the morning",转换后为"ATTACK IN THE MORNING"。 注意:字符串中可以包含空格。需要补充的代码为:#include <iostream> using namespace std; #define STR_LEN 80 //明文最大长度 //读入一行字符串存储到str中,长度不超过maxLength void readLine(char str[], int maxLength); //把src复制到dst中,并且把其中的小写字母转成大写字母 void toUppercase(char src[], char dst[]); int main() { char plainText[STR_LEN + 1]; //存储明文 readLine(plainText, STR_LEN); char cipherText[STR_LEN + 1]; //存储密文 toUppercase(plainText, cipherText); cout << cipherText << endl; return 0; } //读入一行字符串存储到str中,长度不超过maxLength void readLine(char str[], int maxLength) { int i = 0; while (i < maxLength) { char ch = cin.get(); if (ch != '\n') { str[i] = ch; } else { break; } i++; } str[i] = '\0'; } //把src复制到dst中,并且把其中的小写字母转成大写字母 void toUppercase(char src[], char dst[]) { /********* Begin *********/ for(int j=0 ; j<10; j++){ } /********* End *********/ }
代码如下:
```
#include <iostream>
using namespace std;
#define STR_LEN 80 //明文最大长度
//读入一行字符串存储到str中,长度不超过maxLength
void readLine(char str[], int maxLength);
//把src复制到dst中,并且把其中的小写字母转成大写字母
void toUppercase(char src[], char dst[]);
int main() {
char plainText[STR_LEN + 1]; //存储明文
readLine(plainText, STR_LEN);
char cipherText[STR_LEN + 1]; //存储密文
toUppercase(plainText, cipherText);
cout << cipherText << endl;
return 0;
}
//读入一行字符串存储到str中,长度不超过maxLength
void readLine(char str[], int maxLength) {
int i = 0;
while (i < maxLength) {
char ch = cin.get();
if (ch != '\n') {
str[i] = ch;
} else {
break;
}
i++;
}
str[i] = '\0';
}
//把src复制到dst中,并且把其中的小写字母转成大写字母
void toUppercase(char src[], char dst[]) {
int i = 0;
while (src[i] != '\0') {
if (islower(src[i])) { //如果是小写字母
dst[i] = toupper(src[i]); //转换成大写字母
} else {
dst[i] = src[i];
}
i++;
}
dst[i] = '\0';
}
```
在toUppercase函数中,使用while循环遍历src字符串中的每一个字符,如果是小写字母,就调用toupper函数将其转换成大写字母,然后将结果存储到dst中。最后,在dst的结尾加上'\0',表示字符串的结束。
阅读全文