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());

            if (a >= b) // a,b两个数a是最大的
            {
                if (a >= c) //a,c中a大
                {
                    Console.WriteLine("三个数中最大的是:" + a);
                }
                else
                {
                    Console.WriteLine("三个数中最大的是:"+c);
                }
            }
            else //a,b两个数中b是大的
            {
                if (b >= c)
                {
                    Console.WriteLine("三个数中最大的是:" + b);
                }
                else
                {
                    Console.WriteLine("三个数中最大的是:"+c);
                }
            }

时间: 2024-10-26 11:17:31

if语句求三个数中最大的的相关文章

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

求三个数中的最大值

三个数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

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; }

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)

【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,

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

【C语言】求多个数中的最大值(可变参数列表)

求多个数中的最大值要求用可变参数列表: 代码如下: <span style="font-size:18px;">#include<stdio.h> #include<stdarg.h> int Max(int n,...) { int i=0; int max=0; va_list arg; va_start(arg,n); for(i=0;i<n;i++) { int val=va_arg(arg,int); if (val>max)

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

#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); } 编程题:返回指针值的函数,求两个数中较