// test_min_max.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeusing namespace std;int find_max(int a,int b){ return a>b?a:b;}int find_min(int a,int b){ return a>b?b:a;}int main(){ int a,b; a=10; b=100; //一般的函数调用形式 int c=find_max(a,b); cout< <
本文共 357 字,大约阅读时间需要 1 分钟。
// test_min_max.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#includeusing namespace std;int find_max(int a,int b){ return a>b?a:b;}int find_min(int a,int b){ return a>b?b:a;}int main(){ int a,b; a=10; b=100; //一般的函数调用形式 int c=find_max(a,b); cout< <
转载于:https://www.cnblogs.com/audi-car/p/4437922.html