如何将整数值转换为 c++ 中的特定 ascii 字符

发布于 2024-09-12 01:47:33 字数 261 浏览 3 评论 0原文

我是 C++ 新手,我正在尝试做一些应该非常基本的事情。

我在 C++ 中有一个小循环,它只显示数字序列,我想将这些数字转换为特定的 ASCII 字符。像这样的东西:

    for (int k = 0; k < 16; k++) {
        display(65+k);
    }

结果应该是这样的:

ABCDEFGH... 等等

有什么想法吗?

谢谢!

I'm new to C++ and I'm trying to do something that should be pretty basic.

I have a small loop in C++ that just displays a sequence of numbers and I would like to convert these numbers into specific ASCII characters. Something like this:

    for (int k = 0; k < 16; k++) {
        display(65+k);
    }

And the result should look like this:

ABCDEFGH... etc

Any ideas?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

摇划花蜜的午后 2024-09-19 01:47:33

根据澄清进行编辑:
从错误信息来看,display采用的是C风格的字符串。您可以像这样构建一个:

for (int k = 0; k < 16; k++) {
    char str[2] = { 65 + k };  // Implicitly add the terminating null.
    display(str);
}

EDIT based on clarification:
Judging from the error message display takes a C-style string. You can build one like this:

for (int k = 0; k < 16; k++) {
    char str[2] = { 65 + k };  // Implicitly add the terminating null.
    display(str);
}
小姐丶请自重 2024-09-19 01:47:33

#include <iostream>  
int main() {  
for (int k = 0; k < 16; k++) {
        std::cout.put(65+k);
    }
}

对于 C++来说是这样的

That would be

#include <iostream>  
int main() {  
for (int k = 0; k < 16; k++) {
        std::cout.put(65+k);
    }
}

for C++

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文