///////
//get ( max : dword )
///////
//得到 ( 最大值 : dword )
DWORD ZFMAX (
DWORD & z_max_1dword_0th_input_dword ,
//input :
//1 dword : 0th : input : dword
///////
//1 dword : 第0个 : 输入 : dword
DWORD & z_max_1dword_1th_input_dword ,
//input :
//1 dword : 1th : input : dword
///////
//1 dword : 第1个 : 输入 : dword
DWORD & z_max_1dword_max_final_output_dword
//input :
//1 dword : ( max : final ) : output : dword
///////
//1 dword : ( 最大 : 最终 ) : 输出 : dword
)
//get ( max : dword )
///////
//得到 ( 最大值 : dword )
{
if (
z_max_1dword_0th_input_dword >= z_max_1dword_1th_input_dword
//1 dword : 0th : input : dword
//>=
//1 dword : 1th : input : dword
///////
//1 dword : 第0个 : 输入 : dword
//>=
//1 dword : 第1个 : 输入 : dword
)
//whether
//1 dword : 0th : input : dword
//>=
//1 dword : 1th : input : dword
///////
//是否
//1 dword : 第0个 : 输入 : dword
//>=
//1 dword : 第1个 : 输入 : dword
{
z_max_1dword_max_final_output_dword = z_max_1dword_0th_input_dword ;
//1 dword : 0th : input : dword
//to
//1 dword : ( max : final ) : output : dword
///////
//1 dword : 第0个 : 输入 : dword
//赋值 到
//1 dword : ( 最大 : 最终 ) : 输出 : dword
}
else if (
z_max_1dword_0th_input_dword < z_max_1dword_1th_input_dword
//1 dword : 0th : input : dword
//<
//1 dword : 1th : input : dword
///////
//1 dword : 第0个 : 输入 : dword
//<
//1 dword : 第1个 : 输入 : dword
)
//whether
//1 dword : 0th : input : dword
//<
//1 dword : 1th : input : dword
///////
//是否
//1 dword : 第0个 : 输入 : dword
//<
//1 dword : 第1个 : 输入 : dword
{
z_max_1dword_max_final_output_dword = z_max_1dword_1th_input_dword ;
//1 dword : 1th : input : dword
//to
//1 dword : ( max : final ) : output : dword
///////
//1 dword : 第1个 : 输入 : dword
//赋值 到
//1 dword : ( 最大 : 最终 ) : 输出 : dword
}
return 0 ;
//funtion success
//函数成功
}
///////
//ZFMAX function
///////
//get ( max : dword )
///////
//ZFMAX 函数
//得到 ( 最大值 : dword )
static DWORD z_max_1dword_0th_input_dword ;
//input :
//1 dword : 0th : input : dword
///////
//1 dword : 第0个 : 输入 : dword
static DWORD z_max_1dword_1th_input_dword ;
//input :
//1 dword : 1th : input : dword
///////
//1 dword : 第1个 : 输入 : dword
static DWORD z_max_1dword_max_final_output_dword ;
//input :
//1 dword : ( max : final ) : output : dword
///////
//1 dword : ( 最大 : 最终 ) : 输出 : dword
没有评论:
发表评论