modifyme.c

来自「征服PYTHON--语言基础与典型应用光盘 实例源码」· C语言 代码 · 共 16 行

C
16
字号
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
		LPSTR lpCmdLine, int nCmdShow)
{
	int a = 0;
	int b = 1;
	if ( a != b )
	{
		MessageBox(NULL, "Bad Python", "Python", MB_OK);
	}
	else
	{
		MessageBox(NULL, "Good Python", "Python", MB_OK);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?