3109:练19.2 三个数
练 19.2 三个数
2053:【例3.3】三个数
C+2053三个数
C语言代码:
#include <stdio.h>
#include <stdlib.h>
int main( void )
{
int a,b,c,tmp;
scanf("%d%d%d",&a,&b,&c);
if( a<b )
{
tmp=a;
a=b;
b=tmp;
}
if ( b <c )
{
tmp=b;
b=c;
c=tmp;
}
if( a<b )
{
tmp=a;
a=b;
b=tmp;
}
printf("%d %d %d",a,b,c);
return 0;
}
C++代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long a[3+5];
cin>>a[1]>>a[2]>>a[3];
sort(a+1,a+1+3);
cout<<a[3]<<" "<<a[2]<<" "<<a[1]<<" "<<endl;
return 0;
}
python3代码:
a,b,c=input().split()
a,b,c=int(a),int(b),int(c)
if a<b:
a,b=b,a
if b<c:
b,c=c,b
if a<b:
a,b=b,a
print(a,b,c)
阅读程序 提高篇 10.[NOIP2004]
NOIP 提高组 初赛 阅读程序写结果
NOIP 提高组 初赛 四、阅读程序写结果 习题集(一)NOIP1998-NOIP1999
NOIP 提高组 初赛 四、阅读程序写结果 习题集(一)NOIP1998-NOIP1999_noip看程序写代码类似编程题-CSDN博客
NOIP 提高组 初赛 四、阅读程序写结果 习题集(二)NOIP2000-NOIP2001
NOIP 提高组 初赛 四、阅读程序写结果 习题集(二)NOIP2000-NOIP2001_noip 2000 初赛试题-CSDN博客
NOIP 提高组 初赛 四、阅读程序写结果 习题集(三)NOIP2002-NOIP2003
NOIP 提高组 初赛 四、阅读程序写结果 习题集(四)NOIP2004-NOIP2005
NOIP 提高组 初赛 四、阅读程序写结果 习题集(四)NOIP2004-NOIP2005_noip2005提高组阅读程序第4题-CSDN博客
文章评论