溫馨提示×

C++逆向輸出代碼怎么實現(xiàn)

c++
小億
157
2024-05-09 11:38:50
欄目: 編程語言

在C++中,可以使用循環(huán)結(jié)構(gòu)來進(jìn)行逆向輸出,即從后往前遍歷并輸出數(shù)組或字符串中的元素。以下是一個簡單的示例代碼:

#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, World!";
    
    // 逆向輸出字符串
    for (int i = str.length() - 1; i >= 0; i--) {
        std::cout << str[i];
    }
    
    std::cout << std::endl;
    
    return 0;
}

在這個示例中,我們首先定義了一個字符串str,然后使用for循環(huán)從字符串末尾開始遍歷并輸出每個字符,從而實現(xiàn)逆向輸出。最終輸出的結(jié)果為!dlroW ,olleH。

0