博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu oj
阅读量:6325 次
发布时间:2019-06-22

本文共 1593 字,大约阅读时间需要 5 分钟。

2000

1 import java.util.Scanner; 2  3 public class Main { 4     public static void main(String[] args) { 5         Scanner in = new Scanner(System.in); 6         while (in.hasNext()) { 7             String s = in.next(); 8             char c1 = s.charAt(0); 9             char c2 = s.charAt(1);10             char c3 = s.charAt(2);11             char t;12             if (c1 > c2) {13                 t = c1;14                 c1 = c2;15                 c2 = t;16             }17             if (c2 > c3) {18                 {19                     t = c2;20                     c2 = c3;21                     c3 = t;22                 }23                 if (c1 > c2) {24                     t = c1;25                     c1 = c2;26                     c2 = t;27                 }28             }29             System.out.println(c1 + " " + c2 + " " + c3);30         }31     }32 }
View Code

 2001

1 import java.text.DecimalFormat; 2 import java.util.Scanner; 3  4 public class Main { 5     public static void main(String[] args) { 6         Scanner in = new Scanner(System.in); 7         DecimalFormat df = new DecimalFormat("#0.00"); 8         while (in.hasNext()) { 9             double x1 = in.nextDouble();10             double y1 = in.nextDouble();11             double x2 = in.nextDouble();12             double y2 = in.nextDouble();13             double distance = Math.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2)14                     * (y1 - y2));15             System.out.println(df.format(distance));16         }17     }18 }
View Code

 

转载于:https://www.cnblogs.com/pengzheng/p/3175924.html

你可能感兴趣的文章
Unity3D 之3D游戏SD快打 3D游戏基础入门开发全(1)
查看>>
HtmlAgilityPack使用
查看>>
详解 Spotlight on MySQL监控MySQL服务器
查看>>
修改MySQL自动递增值
查看>>
2016年8月编程语言排行榜
查看>>
使用Nginx负载均衡搭建高性能.NETweb应用程序一
查看>>
vs vim 插件
查看>>
leetcode409
查看>>
BZOJ3752 : Hack
查看>>
maven打包时,依赖包打不进jar包中
查看>>
thinkphp并发 阻塞模式与非阻塞模式
查看>>
NBNS扫描工具nbtscan-unixwiz
查看>>
支付系统整体设计:整体架构设计以及注意要点(二)
查看>>
小程序 - 实现第一次进入引导页
查看>>
浏览器的事件机制
查看>>
开源软件代码安全缺陷分析报告——框架类软件专题
查看>>
es-09-spark集成
查看>>
php 基于cookie的sessIon机制
查看>>
如何获取 docker 容器(container)的 ip 地址(转)
查看>>
IRS-P6数据介绍
查看>>