输出摄氏温度,输出对照条目
public class WenDu {
public static void main(String[] args) {
double sheShi=0;
double huaShi;
int i=1;
do{
System.out.println(i+"\t摄氏温度"+sheShi+"\t\t"+“华氏温度”+(sheShi*9/5.0+32));

		sheShi+=20;
		i++;
	}while(i<=10 && sheShi<=250);
}

}
输出摄氏温度,输出对照条目

相关文章:

  • 2021-05-09
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2022-12-23
  • 2021-12-03
  • 2021-12-03
猜你喜欢
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2021-12-13
  • 2021-04-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案