溫馨提示×

c++ getch怎樣不顯示字符

c++
小樊
101
2024-07-21 14:33:59
欄目: 編程語言

您可以使用以下代碼來實現在C++中不顯示字符輸入的功能:

#include <iostream>
#include <conio.h>

int main() {
    char ch;
    
    std::cout << "Enter a character: ";
    
    // Hide the character input
    ch = _getch();
    
    // Do something with the character input
    std::cout << "\nYou entered: " << ch << std::endl;
    
    return 0;
}

在這個示例中,我們使用_getch()函數從用戶獲取字符輸入,但是由于該函數不會將字符顯示在控制臺上,因此用戶輸入的字符將不會在屏幕上顯示。

0