Problem A: 调用函数,求三个数中最大数

#include<stdio.h>
int max(int a,int b,int c);
int main()
{
    int a,b,c;
    while(scanf("%d %d %d",&a,&b,&c)!=EOF){
    printf("%d\n",max(a,b,c));}
    return 0;
}

int max(int a,int b,int c)
{
    int m;
    m=a;
    if(b>m)
    m=b;
    if(c>m)
    m=c;
    return m;
}

原文地址:https://www.cnblogs.com/chenlong991223/p/9880174.html

时间: 2024-10-12 15:10:02

Problem A: 调用函数,求三个数中最大数的相关文章

C#编写代码:求三个数中的最大数

static void Main(string[] args)        {            float x, y, z, temp;            Console.Write("请输入一个实数:");            x = float.Parse(Console .ReadLine() );            Console.Write("请输入一个实数:");            y = float.Parse(Console .

JAVA_新建一个方法并且求三个数中的最大值

package wac.wev.as;//新建一个方法在求最大值import java.util.Scanner; public class MaxLian {public static void main(String[] args){//键盘录入以及导包Scanner sc= new Scanner(System.in);//数据接收System.out.println("请输入第一个数据:");int a = sc.nextInt();System.out.println(&qu

if语句求三个数中最大的

Console.WriteLine("请输入第一个数:"); int a = Convert.ToInt32( Console.ReadLine()); Console.WriteLine("请输入第二个数:"); int b = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("请输入第三个数:"); int c = Convert.ToInt32(Console.ReadLine(

【c语言】利用指针求三个数的最大数和最小数

比较费空间的笨方法: #include<stdio.h>void main(){    int i,j,k,*m,*n,*q,temp;    printf("请输入三个数:");    scanf("%d,%d,%d",&i,&j,&k);    printf("三个数是:%d,%d,%d\n",i,j,k);    m=&i,n=&j,q=&k;    if(*n<*m){  

求三个数中的最大值

三个数a b c int a = 10; int b = 100; int c = 1000; 第一种方式if嵌套 int max = 0; if (a > b) { if (a > c) { max = a; } else { max = c; } } else if (b > a) { if (b > c) { max = b; } else { max = c; } } else if (c > a) { if (c > b) { max = c; } else

【C语言】求三个数中的最值

#include int max(int x,int y) { int z; //if (x>y) z=x; //else z=y; x>y?(z=x):(z=y); return (z); } int min(int x,int y) { int z; //if (x<y) z=x; //else z=y; x return (z); } int main() { int a,b,c,d; scanf("%d,%d",&a,&b); c=max(a,

Java编程:用三目运算符和交换两种方法求三个数中的中间数字。

import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a =sc.nextInt(); int b =sc.nextInt(); int c =sc.nextInt(); int t=0; if(a>b) { t=a; a=b; b=t; } if(a>c) { t=a; a=c; c=t; }

javascript基础程序(算出一个数的平方值、算出一个数的阶乘、输出!- !- !- !- !- -! -! -! -! -! 、函数三个数中的最大数)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script> /* 算出一个数的平方值 function add(a){ var b=Math.sqrt(a); return b; } alert(add(3));*/ /*// 算出一个数的阶乘 func

编程题:返回指针值的函数,求两个数中较大的数。

#include<stdio.h> int *max(int *x,int *y) { int *q; if(*x>*y)  q=x; else  q=y; return q; } void main() { int a,b,*p; scanf("%d,%d",&a,&b); p=max(&a,&b); printf("%d,%d,max is %d\n",a,b,*p); } 编程题:返回指针值的函数,求两个数中较