c:

#include<stdio.h>
//从大到小
int main()
{
int a, b, c;
int x = 0;

printf("input message:\n");
scanf("%d %d %d", &a, &b, &c);

if(a < b)
{
x = a;
a = b;
b = x;
}
if(a < c)
{
x = a;
a = c;
c = x;
}
if(b < c)
{
x = b;
b = c;
c = x;
}

printf("output message:\n %d %d %d", a, b, c);

return 0;
}

最新文章

  1. 关于bootstrap的一些运用
  2. Mutex 和 Lock
  3. Ubuntu 12.04搭建l2tp服务器记录。
  4. rem字体响应式布局
  5. 收藏的博客--PHP
  6. 关于linux python vim的一些基础知识(很零散)
  7. IDEA使用docker进行调试
  8. Eclipse 启动问题:&#39;Initilizing Java Tooling&#39; has encountered a problem(。。。)
  9. 如何解决FormView中实现DropDownList连动选择时出现 "Eval()、XPath() 和 Bind() 这类数据绑定方法只能在数据绑定控件的上下文中使用" 的错误
  10. 【Python】@property的用法
  11. Shellcode入门
  12. TCP/IP 笔记 - DHCP和自动配置
  13. Numpy知识(三)
  14. 弱智python小游戏猜数字
  15. MyBatis使用自定义TypeHandler转换类型的实现方法
  16. CentOS 安装系统侦察工具
  17. 超像素 superpixels 是什么东西
  18. :input获得焦点时被弹出键盘挡住解决办法
  19. bzoj4380[POI2015]Myjnie dp
  20. jQuery动态创建form表单并提交到后台(携带一定的数据进行页面跳转)

热门文章

  1. aspnetcore 认证相关类简要说明三
  2. In-app Billing 概述
  3. 通过u盘启动盘重装系统
  4. Java学习---InetAddress类的学习
  5. Mysql学习---索引的学习 180101
  6. Linux中脚本的使用方法
  7. Android启动外部应用的方法
  8. Python 处理脚本的命令行参数(三):使用argparse
  9. MVC 入门-MvcMovie
  10. windows下注册和取消pg服务的命令