stdafx.h
来自「洗牌发牌游戏 有电脑随机将全部扑克牌进行洗牌发牌」· C头文件 代码 · 共 25 行
H
25 行
// stdafx.h : 标准系统包含文件的包含文件,
// 或是经常使用但不常更改的
// 特定于项目的包含文件
//
#ifndef stdafx_h
#define stdafx_h
#ifndef _WIN32_WINNT // 允许使用特定于 Windows XP 或更高版本的功能。
#define _WIN32_WINNT 0x0501 // 将此值更改为相应的值,以适用于 Windows 的其他版本。
#endif
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <vector>
#include <string>
#include <stdlib.h>
#include <time.h>
#include "fa.h"
using namespace std;
#endif
// TODO: 在此处引用程序需要的其他头文件
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?