个人c++学习(2)比较两个数字大小

#include "stdafx.h" #include<iostream> using namespace std; int max(int i, int j){ /*定义max()函数*/ if (i>=j) return i; else return j; } int main(void){
相关文章
相关标签/搜索