herrDeng網內搜尋

自訂搜尋

Ads

2015年5月25日 星期一

Ex8. 華氏度數轉攝氏

Ex8. 華氏度數轉攝氏

f=32  to 1000 step 32

39 則留言:

D10333009 提到...



public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

D10033003陳志翔 提到...

public class D100330033 {

public static void main(String[] args) {
// TODO Auto-generated method stub
int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}

}

}

D10333009 張賢青 提到...



public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

D10033305呂健宏 提到...


public class txet_1 {

public static void main(String[] args) {
int upper = 1000;
int Step = 32;
for(int f=32;f<=upper;f+=Step){
double c=(f-32)*5/9;
System.out.println(f+"\t"+c);

}
}

}

D10033203 提到...

public class d10033203 {

public static void main(String[] args) {
// TODO Auto-generated method stub
int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}
}

}

D10333034 洪芷茵 提到...

D10333034 洪芷茵

public class HI2 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);

}
}

}

D10333012范秀娟 提到...

public class ex2 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}

}

}

D10033203 提到...

public class d10033203 {

public static void main(String[] args) {
// TODO Auto-generated method stub
int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}
}

}

d10033093葉正傑 提到...


public class ex02 {

public static void main(String[] args) {

int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);

}
}
}

D10333040 王崇安 提到...

D10333040 王崇安

public class hi2 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);

}
}

}

D10333007馮婷鈺 提到...


public class Hi2 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

D10033029 吳武俊 提到...

public class do2 {

public static void main(String[] args) {

int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}

}

}

D10333033 江淑婷 提到...

D10333033 江淑婷

public class hi0525 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

D10333010 柯羿瑄 提到...

D10333010 柯羿瑄
public class hi0525 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

D10333015陳韻萱 提到...



public class cho {

public static void main(String[] args) {

double f = 0;
double c = 0;
for ( f = 32; f <= 1000; f += 32 ) {
c = (f-32)/9.0*5.0;
System.out.println("華氏 "+f+" 度 = 攝氏 "+c+" 度 ");
}


}

}

D10333037 楊茗程 提到...

public class LOVE520520 {

public static void main(String[] args) {
double f=0;
double c=0;
for (f=32;f<=1000;f+=32){
c=(f-32)/9.0*5.0;
System.out.println("華氏"+f+"度=攝氏"+c+"度");
}

}

}

D10333001 羅原福 提到...

public class bbb {

public static void main(String[] args) {
double f =0;
double c =0;
for ( f = 32; f <= 1000; f += 32 ) {
c = (f-32) / 9.0 *5.0;
System.out.println("華氏"+f+"度=攝氏"+c+"度");
}

}
}

Y10310066 陳昤瑄 提到...

Y10310066 資管一甲 陳昤瑄

public class dsf {

public static void main(String[] args){
double upper=1000;
double step =32;
for (double f =32;f<=upper;f+=step){
double c =(f-32.0)*5.0/9.0;
System.out.println(f+"\t"+c);
}

}
}

邱秀蓉D10233203 提到...

public class ex3 {
public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0) * 5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}
}

D10333030張佑榕 提到...


public class EXXX {

public static void main(String[] args) {
double f=0;
double c=0;
for (f=32;f<=1000;f+=32){
c=(f-32)/9.0*5.0;
System.out.println("華氏"+f+"度=攝氏"+c+"度");
}

}

}

Y10310054 潘幸德 提到...

public class hi123 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <=upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

d10333022劉俊谷 提到...


public class ppp333 {

public static void main(String[] args) {
double upper =1000;
double step = 32;
for ( double f = 32;f <=upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

d10333016羅勝耀 提到...


public class www123{

public static void main(String[] args) {
double upper =1000;
double step = 32;
for ( double f = 32;f <=upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}

}

D10333002徐國智 提到...


public class helloex1 {

public static void main(String[] args) {
double upper=1000;
double step=32;
for (double f=32;f <=upper;f +=step){
double c=(f-32.0)*5.0/9.0;
System.out.println(f+"\t"+c); }

}

}

邱秀蓉D10233203 提到...

public class ex3 {
public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0) * 5.0 / 9.0;
System.out.println(f + "\t" + c);
}
}
}

D10333039邱嘉琪 提到...

public class HIHI {

public static void main(String[] args) {
double f = 0;
double c = 0;
for ( f = 32; f <= 1000; f += 32 ){
c = (f-32)/9.0*5.0;
System.out.println("華氏"+f+" 度 = 攝氏 "+c+" 度");
}

}

}

D10333031張裕玲 提到...


public class ex3 {
public static void main(String[] args) {
double f = 0;
double c = 0;
for ( f =32; f <= 1000; f +=32 ){
c = (f-32)/9.0*5.0;
System.out.println("華氏 "+f+" 度 = 攝氏"+c+" 度");

}

}
}

D103333008王旭翔 提到...

public class joneswang {
public static void main(String[] args) {
double f=0;
double c=0;
for(f=32;f<=1000;f+=32){
c=(f-32)/9.0*5.0;
System.out.println("華氏"+f+"度=攝氏"+c+"度");}}}

D10333003盛采彤 提到...


public class hihi0525 {

public static void main(String[] args) {

double f=0;
double c=0;
for(f=32;f<=1000;f+=32){
c=(f-32)/9.0*5.0;
System.out.println("華氏"+f+"度=攝氏"+c+"度");
}
}

}

D10333014邱宜貞 提到...


public class hello0525 {

public static void main(String[] args){
double f = 0;
double c = 0;
for ( f = 32; f <= 1000; f += 32 ){
c = (f-32)/9.0*5.0;
System.out.println("華氏"+f+" 度 = 攝氏 "+c+" 度 ");
}

}

}

D10333019 提到...

public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

d10333026 提到...

public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

D10333013吳竑逸 提到...

public class ex2 {

public static void main(String[] args) {
double upper = 1000;
double step = 32;
for (double f = 32;f <= upper;f += step){
double c = (f - 32.0)*5.0 / 9.0;
System.out.println(f + "\t" + c);
}

}

}

D10033303 謝凱宇 提到...

public class D10033303 {

public static void main(String[] args) {
// TODO Auto-generated method stub
int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}

}

}

匿名 提到...

D10033301 江姿穎 提到...
public class D10033301 {

public static void main(String[] args) {
// TODO Auto-generated method stub
int upper = 1000;
int step = 32;
for (int f = 32;f <= upper;f += step){
double c = (f-32)*5/9;
System.out.println(f + "\t" + c);
}

}

}

B10033077陳光浩 提到...

public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

D9933084 陳睿喆 提到...

public class ex2 {

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32)
{
c = (f-32)/9.0*5.0;

System.out.println("華氏"+f+" = 攝氏 "+c);
}

}

}

B10033104 提到...

public static void main(String[] args) {
double f = 32;
double c = 0;
for (f=32;f<1000;f+=32){
c = (f-32)/9.0*5.0;
System.out.println("華氏"+f+" = 攝氏 "+c);
}
}

D10333038歐俊吉 提到...

public class Hey {
public static void main(String[] args) {
double f = 0;
double c = 0;
for ( f =32; f <= 1000; f +=32 ){
c = (f-32)/9.0*5.0;
System.out.println("華氏 "+f+" 度 = 攝氏"+c+" 度");

}

}
}

Related Posts Plugin for WordPress, Blogger...

熱門文章