只需要将第一个数与第二个数比较,然后将前两个数中较大的和第三个数比较,即可得到最大值。代码如下:
int max(int a, int b, int c){
int max = a;
if (b > max)
max = b;
if (c > max)
max = c;
return max;
}
这种都是简单的字符串遍历算法。
例如:
void del_char(char oldstring, char newstring)
{
while(oldstring != '\n')
{
if(oldstring ! != ' ')
{
newstring = oldstring;
}
oldstring++;
newstring ++;
}
}
函数返回类型 函数名(参数列表)
{
代码段;
return 函数返回值;
}
例如:
int test(int value){
value += 10;
return value;
}
上面示例定义了一个名为test的函数,其返回值为int型,参数为int型,返回值为参数与10之和。
注:函数类型为void时,不可有return语句。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)