C#语句编写程序,将输入的任意3个数按从大到小的顺序输出..用If语句..

如题所述

可以参考下面的代码:

if(a>b && a>c)

max=a;

else if(b>a && b>c)

max=b;

else if(c>a && c>b) (为了你明白我写出来了,可以直接写个else)

max=c;

if(a<b && a<c)

min=a;

else if(b<a && b<c)

min=b;

else if(c<a && c<b)

min=c;

if(a>b && a<c)

mid=a;

else if(b>a && b<c)

mid=b;

else if(c>a && c<b)

mid=c;

扩展资料:

if语句的一般形式如下:

if(表达式)语句1

[else语句2]

if语句中的“表达式”可以是关系表达式、逻辑表达式,甚至是数值表达式。

C#中if语句语法

if语句的语法如下所示(if和else是C#的关键字):

if(booleanExpression)

statement-1;

else

statement-2;

参考资料来源:百度百科-if语句

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2018-05-09
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int n1, n2, n3;
Console.WriteLine("请输入三个整数");
n1 = Convert.ToInt32(Console.ReadLine());
n2 = Convert.ToInt32(Console.ReadLine());
n3 = Convert.ToInt32(Console.ReadLine());
if (n1 >n2)
{
n1 ^= n2;
n2 ^= n1;
n1 ^= n2;
}
if (n2 >n3)
{
n2 ^= n3;
n3 ^= n2;
n2 ^= n3;
}
if (n1 >n3)
{
n1 ^= n3;
n3 ^= n1;
n1 ^= n3;
}
Console.WriteLine("排序后:" + n1 + ' ' + n2 + ' ' + n3);
}
}
}
两个单引号中间有一个空格,否则为空字符。本回答被网友采纳
第2个回答  2013-10-23
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int n1, n2, n3;
Console.WriteLine("请输入三个整数,以回车分隔:");
n1 = Convert.ToInt32(Console.ReadLine());
n2 = Convert.ToInt32(Console.ReadLine());
n3 = Convert.ToInt32(Console.ReadLine());
if (n1 < n2)
{
n1 ^= n2;
n2 ^= n1;
n1 ^= n2;
}
if (n2 < n3)
{
n2 ^= n3;
n3 ^= n2;
n2 ^= n3;
}
if (n1 < n2)
{
n1 ^= n2;
n2 ^= n1;
n1 ^= n2;
}
Console.WriteLine("排序后:" + n1 + ' ' + n2 + ' ' + n3);
}
}
}本回答被网友采纳
第3个回答  2013-10-23
#include<stdio.h>
main()
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if((a>=b)&&(b>=c)){
printf("%d %d %d\n",a,b,c);
}else if((a>=c)&&(c>=b)){
printf("%d %d %d\n",a,c,b);
}else if((b>=a)&&(a>=c)){
printf("%d %d %d\n",b,a,c);
}else if((b>=c)&&(c>=a)){
printf("%d %d %d\n",b,c,a);
}else if((c>=a)&&(a>=b)){
printf("%d %d %d\n",c,a,b);
}else if((c>=b)&&(b>=a)){
printf("%d %d %d\n",c,b,a);
}else{
printf("Error\n");
}
}

C#语句编写程序,将输入的任意3个数按从大到小的顺序输出..用If...
max=b;else if(c>a && c>b) (为了你明白我写出来了,可以直接写个else)max=c;if(a<b && a<c)min=a;else if(b<a && b<c)min=b;else if(c<a && cb && a<c)mid=a;else if(b>a && b<c)mid=b;else if(c>a && c...

C#语句编写程序,将输入的任意3个数按从大到小的顺序输出..用If...
static void Main(string[] args){ int n1, n2, n3;Console.WriteLine("请输入三个整数");n1 = Convert.ToInt32(Console.ReadLine());n2 = Convert.ToInt32(Console.ReadLine());n3 = Convert.ToInt32(Console.ReadLine());if (n1 >n2){ n1 ^= n2;n2 ^= n1;n1 ^= n2;} if (n2...

C#怎么比较三个数的大小并按从大到小的顺序输出?要用if语句。
else if (c >= b && b >= a){ max = c;middle = b;min = a;} Console.WriteLine ("排序后的序列为(从大到小):{0}{1}{2}{3}{4}",max ,",",middle,"," ,min);} } } 测试过了绝对能用!是控制台应用程序!写的有点复杂!也可以用冒泡排序什么的写。。希望对你有用!

C#编程 输入三个整数 按从小到大排列输出
if(*q2>*q3)swap(q2,q3);} void main(){ void exchange(int *q1,int *q2,int *q3);void swap(int *a,int *b);int a,b,c,*p1,*p2,*p3;scanf("%d,%d,%d",&a,&b,&c);p1=&a;p2=&b;p3=&c;exchange(p1,p2,p3);printf("%d<%d<%d",*p1,*p2,*p3);} void swap(int...

C#编程:从键盘上输入三个数,按从大到小的顺序输出。
{ int[] lst = new int[3];for (int i = 0; i < 3; i++){ Console.WriteLine("请输入您要进行排序的第{0}个数字:", i);lst[i] = Convert.ToInt32(Console.ReadLine());} sort(lst);foreach(int i in lst)Console.WriteLine(i);Console.ReadLine();} public static void...

c#输入三个整数,使用嵌套if语句将三个整数按从小到大的顺序输出?
1. 提示用户输入3个整数,并读取输入,转换为int类型。2. 首先判断a和b的大小关系,如果a < b,再判断a与c的大小关系,并输出三个数从小到大。3. 如果a不小于b,再判断b与c的大小关系,并输出三个数从小到大。4. 使用嵌套if-else语句,判断所有可能的大小关系,并输出相应的从小到大顺序。5. 控制...

...输入3个整数,然后输出最小数,最后按照从大到小顺序排列出”的具体...
include<stdio.h>void main(){ int a,b,c,t; printf("请输入三个整数:a b c\\n"); scanf("%d%d%d",&a,&b,&c); if(a>b) { t=a; a=b; b=t; } if(a>c) { t=a; a=c; c=t; } if(b>c) { t=b; b=...

C# 比较三个数的大小,并从大到小排列
static void Main(string[] args){ Console.WriteLine("输入3个数:");int[] a = new int[3];for (int b = 0; b < a.Length; b++) \/\/用for循环给数组添加数据 { a[b] = int.Parse(Console.ReadLine()); \/\/接收3个数 } int temp; \/\/保存最大值 for (int i = 1; ...

编程:输入3个数,按从小到大的顺序输出
int a, b, c;scanf("%d %d %d", &a, &b, &c); \/\/ 输入三个数,用空格分开 if (a < b && a < c) { \/\/ 情况1:a是最大的 if (b < c) { printf("%d %d %d", a, b, c); \/\/ 按从小到大的顺序输出 } else { printf("%d %d %d", a, c, b);} } else if...

...由键盘输入三个数a,b,c,按从小到大的顺序输出这三个数。
c

相似回答