一个数字以响应的话就是这样:还是用strcmp函数,要一个一个对比就不需要passcheck[]数组的 include <string.h> include <stdio.h> char key();int pass(unsigned char);int main (){ unsigned char password[]={7,4,5,6}; //用于存储设置好的密码 if (pass(password) == 1)printf(...
int lare(int x,int y){ int z;if(x>y)z=1;else if(x<y)z=-1;else z=0;return(z);} 圆括号改成中括号就可以了
还可以使用模板函数来求最大数。模板函数允许你在定义函数时使用类型参数,从而使函数可以使用不同类型的参数。例如:#include <iostream>template <typename T>T find_max(T a, T b, T c, T d, T e) { T max = a;if (b > max) max = b;if (c > max) max = c;if (d > max) max ...