求c语言基础的简单例子,如排序,加减等 越多越好
发布网友
发布时间:2022-04-24 00:28
我来回答
共2个回答
热心网友
时间:2023-10-15 13:07
排序问题需要用中间值来交换如三个数来排序从大到小
#include<stdio.h>
void main()
{
int a,b,c,t;
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;
c=t;
}
printf("%d,%d,%d\n",a,b,c);
}
加减就更好做了很简单只要定义好变量就好,熟悉程序的环境
例如两个数相加
#include<stdio.h>
void main()
{
int a,b,sum;
scanf("%d%d",&a,&b);
sun=a+b;
printf("%d\n",sum);
}
多个数就多设计个变量
热心网友
时间:2023-10-15 13:08
编程百例http://post.baidu.com/f?kz=8618367
热心网友
时间:2023-10-15 13:07
排序问题需要用中间值来交换如三个数来排序从大到小
#include<stdio.h>
void main()
{
int a,b,c,t;
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;
c=t;
}
printf("%d,%d,%d\n",a,b,c);
}
加减就更好做了很简单只要定义好变量就好,熟悉程序的环境
例如两个数相加
#include<stdio.h>
void main()
{
int a,b,sum;
scanf("%d%d",&a,&b);
sun=a+b;
printf("%d\n",sum);
}
多个数就多设计个变量
热心网友
时间:2023-10-15 13:08
编程百例http://post.baidu.com/f?kz=8618367