OD介绍及基本操作 so hard!
Od index & basic operation
#include <iostream>
#include <Windows.h>
#include <tlhelp32.h>
int main()
{
int b;
int a = 123;
scanf_s("%d", &b);
if (b==a)
{
MessageBoxA(NULL, "回答正确!","回答正确!",MB_OK);
}
else
{
MessageBoxA(NULL, "回答错误!", "回答错误!", MB_OK);
}
}