⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testex72.cpp

📁 Visual C++_ 600 编程学习捷径
💻 CPP
字号:
// TestEx72.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "stdio.h"

#pragma comment(lib, "Ex72.lib")

extern "C"_declspec(dllimport) int Max(int a,int b);
extern "C"_declspec(dllimport) int Min(int a,int b);

int main(int argc, char* argv[])
{
	int min, max;
	min = Min(10, 20);
	max = Max(10, 20);

	printf("最小值为%d\n", min);
	printf("最大值为%d\n", max);

	return 0;
}

⌨️ 快捷键说明

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