小女不胜感激~~~
----------------解决方案--------------------------------------------------------
#include <stdio.h>
#include <conio.h>
int main(void)
{
int a,b,c,d;
int temp,temp1;
clrscr();
scanf("%d %d %d %d",&a,&b,&c,&d);
if(a>b)
temp=b;
else
temp=a;
if(c>d)
temp1=d;
else
temp1=c;
if(temp<temp1)
printf("%d %d ",temp,temp1);
else
printf("%d %d ",temp1,temp);
if(a!=temp)
temp=a;
else
temp=b;
if(c!=temp1)
temp1=c;
else
temp1=d;
if(temp<temp1)
printf("%d %d ",temp,temp1);
else
printf("%d %d ",temp1,temp);
getch();
}
----------------解决方案--------------------------------------------------------
象这样做挺麻烦的,估计是为了照顾楼主吧。还可以用数组。。。。。
----------------解决方案--------------------------------------------------------
冒泡法
#include<stdio.h>
main()
{
int a[4];
int i,j,temp;
printf("input 4 number:\n");
for(i=0;i<4;i++)
scanf("%d",&a[i]);
for(i=0;i<4;i++)
for(j=4;j>i;j--)
{
if(a[j]>a[j+1])
{
temp=a[j+1];
a[j+1]=a[j];
a[j]=temp;
}
}
for(i=0;i<4;i++)
printf("%d<",a[i]);
getch();
}
[此贴子已经被作者于2007-3-17 11:34:08编辑过]
----------------解决方案--------------------------------------------------------
还有哪个选择法呢?呵呵。。。。
----------------解决方案--------------------------------------------------------
忘了 你写个选择法吧 我冒泡 和选择有点混乱
----------------解决方案--------------------------------------------------------
管他什么法,写的程序效率高就是好法
----------------解决方案--------------------------------------------------------
我来给你写选择法
main()
{int a[4];
int i,j,t;
printf("input data");
for(i=0;i<4;i++)
scanf("%d",a[i]);
for(i=0;i<4;i++)
for(j=1;j<4;j++)
{if(a[i]>a[j])
t=a[i];a[i]=a[j];a[j]=t;}
for(i=0;i<4;i++)
printf("%d",a[i]);
}
我没调哈
----------------解决方案--------------------------------------------------------
#include "stdio.h"
main()
{
int a[4],i,j,t;
for(i=0;i<4;i++)
scanf("%d",&a[i]);
for(i=0;i<4;i++){
for(j=0;j<4-i;j++)
if(a[j]>a[j+1]){
t=a[j];
a[j]=a[j+1];
a[j+1]=t;
}
}
for(i=0;i<4;i++)
printf("%d ",a[i]);
}
四楼的程序好象有点问题哦,运行时有时会出错
----------------解决方案--------------------------------------------------------
2楼的就可以了吗?
输入这些东西之后,怎么运行啊?
如果老师给出这些题目,我要怎么一道一道做出来啊?
----------------解决方案--------------------------------------------------------