java温度转换代码少 java温度转化为摄氏度编程
用java求温度转换 【运算符】
import java.text.DecimalFormat;import java.util.Scanner;
创新互联专业为企业提供鹿泉网站建设、鹿泉做网站、鹿泉网站设计、鹿泉网站制作等企业网站建设、网页设计与制作、鹿泉企业网站模板建站服务,十年鹿泉做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
public class b {
/**
* @param args
*/
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("请输入一个整数:");
int c=sc.nextInt();
double f=9.0/5.0*c+32;
DecimalFormat df=new DecimalFormat("##.00");
String as=df.format(f);
System.out.println("你要的结果是:"+as);
}
}
java菜鸟程序(用do-while实现摄氏度转变怎么写程序)!
double
huashi;
double
sheshi
=
0.0;
int
printOutCnt
=
0;
do
{
huashi
=
sheshi
*
9
/
5.0
+
32;
if
(printOutCnt
10)
{
System.out.println("huashi(%d)→sheshi(%d)",
huashi,
sheshi);
printOutCnt++;
}
sheshi
=
sheshi
+
20;
}while(sheshi
=
sheshi
=
250)
0-250每隔20个刻度明显要输出13条,最多只让输出10条,肯定不可能全输出出来,太坑人了。。。这样看更简单一些,如果要求超过10条退出的话,可以直接在while条件里写
while(sheshi
=
sheshi
=
250
printOutCnt
10)
JAVA编程将华氏温度转换为摄氏温度
public class Main {
/**
* 华氏温度转摄氏温度
* @param tW 华氏温度
* @return 摄氏温度
*/
public static float W2C(float tW)
{
return (tW-32)*5/9;
}
/**
* 摄氏温度转华氏温度
* @param tC 摄氏温度
* @return 华氏温度
*/
public static float C2W(float tC)
{
return 9*tC/5+32;
}
/**
* @param args
*/
public static void main(String[] args) throws IOException
{
// TODO Auto-generated method stub
intln(Main.W2C(100)); // 华氏100度转摄氏温度
intln(Main.C2W(100)); // 摄氏100度转华氏温度
}
}
用JAVA写一个将华氏温度转换成摄氏温度的程序
这样:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
int C;
int F = in.nextInt();
C = (F - 32)*5/9;
System.out.println(C);
in.close();
}
}
扩展资料:
注意事项
/*
* 华氏温度和摄氏温度互相转换,从华氏度变成
摄氏度你只要减去32,乘以5再除以9就行了,将
摄氏度转成华氏度,直接乘以9,除以5,再加上
32即行。
* */
package com.homework;
import java.util.*;
public class Demo2 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("请输入一个华氏温度:");
Scanner sc = new Scanner (System.in);
float a = sc.nextFloat();
float b;
b = (a-32) * 5 / 9;
System.out.println(b);
}
}
java编程温度转换
你一直在重复的给f赋值,我刚写了下,给你参考,代码贴在下面,选我下哦
import java.util.Scanner;
public class Work1
{
public static void main(String[] args)
{
double a;
double b;
System.out.println("请选择温度种类:1,摄氏度转华氏度 2,华氏度转摄氏度");
Scanner change = new Scanner(System.in);
double g = change.nextInt();
System.out.println("请输入需要转换的温度:");
Scanner changedegree = new Scanner(System.in);
double f = changedegree.nextDouble();
if (g == 1)
{
a = f * 9 / 5 + 32;
System.out.println("华氏度为:" + a);
} else if (g == 2)
{
b = (f - 32) * 5 / 9;
System.out.println("摄氏度为" + b);
}
}
}
当前标题:java温度转换代码少 java温度转化为摄氏度编程
分享地址:http://pwwzsj.com/article/hgghhh.html