#include
#define KEY_DOWN(vk_code) ( (GetAsyncKeystate (vk_code) & 0x8000) ? 1 : 0)
while (TRUE)
{
if (KEY_DOWN (VK_ESCAPE))
break;
if (KEY_DOWN ('A'))
{
调用子程序A;
}
..........
}
是不是这样咧。
Rem 开始
a = WaitKey()
If a = 65 Then
Call a()
End If
If a = 66 Then
Call b()
End If
If a = 67 Then
Call c()
End If
Goto 开始
Sub a
//子程序a的内容
End Sub
Sub b
//子程序b的内容
End Sub
Sub c
//子程序c的内容
End Sub