帮我用C++写一个按钮的功能
时间: 2024-06-06 19:08:40 浏览: 40
这里提供一个简单的按钮功能的示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main()
{
char ch;
printf("Please press the 'Enter' key to activate the button:\n");
ch = getch(); // 获取用户按下的键盘字符
if (ch == '\r') // 判断用户是否按下回车键
{
printf("Button is activated!\n");
}
else
{
printf("Invalid input!\n");
}
return 0;
}
这个程序中,用户需要按下回车键来激活按钮。如果用户按下了回车键,程序会输出“Button is activated!”;如果用户输入了其他字符,程序会输出“Invalid input!”。
阅读全文