How do I increment letters in c++?(如何在 C++ 中增加字母?)
问题描述
我正在用 c++ 创建一个凯撒密码,但我不知道如何增加一个字母.
I'm creating a Caesar Cipher in c++ and i can't figure out how to increment a letter.
我需要每次将字母加 1 并返回字母表中的下一个字母.像下面这样将 1 添加到 'a'
并返回 'b'
.
I need to increment the letter by 1 each time and return the next letter in the alphabet. Something like the following to add 1 to 'a'
and return 'b'
.
char letter[] = "a";
cout << letter[0] +1;
推荐答案
这个片段应该让你开始.letter
是 char
而不是 char
的数组也不是字符串.
This snippet should get you started. letter
is a char
and not an array of char
s nor a string.
static_cast
确保 'a' + 1
的结果被视为 char
.
The static_cast
ensures the result of 'a' + 1
is treated as a char
.
> cat caesar.cpp
#include <iostream>
int main()
{
char letter = 'a';
std::cout << static_cast<char>(letter + 1) << std::endl;
}
> g++ caesar.cpp -o caesar
> ./caesar
b
当你到达 'z'
(或 'Z'
!)时要小心,祝你好运!
Watch out when you get to 'z'
(or 'Z'
!) and good luck!
这篇关于如何在 C++ 中增加字母?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C++ 中增加字母?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01