Ex8. 華氏度數轉攝氏
f=32 to 1000 step 32
herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
11!=?
-
借錢500萬,年利18%,每月複利計算,請問連本帶利的金額 5, 10, 15, 20, 25, 30, 35, 40, 45, 50年的金額。並比較公式: A*exp(0.18n) A*(1+0.18/12)^(12*n), n=年數, A=本金 hint: math.h, p...
-
產生50個元素的陣列並排序
-
用 C/C++算上學期加權平均
-
寫一個是否上學期成績2/3的程式
-
請輸出如下 * ** *** **** ***** ******
-
請問你所使的電腦,CPU的規格 Cache多大?其他硬體配置...... 另外, "INTEL® XEON PHI™ 處理器 7230F"的大致規格為?
39 則留言:
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);
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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 洪芷茵
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);
}
}
}
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);
}
}
}
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);
}
}
}
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 王崇安
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);
}
}
}
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);
}
}
}
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 江淑婷
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 柯羿瑄
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);
}
}
}
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+" 度 ");
}
}
}
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+"度");
}
}
}
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 資管一甲 陳昤瑄
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);
}
}
}
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);
}
}
}
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+"度");
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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); }
}
}
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);
}
}
}
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+" 度");
}
}
}
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+" 度");
}
}
}
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+"度");}}}
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+"度");
}
}
}
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+" 度 ");
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
}
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);
}
}
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+" 度");
}
}
}
張貼留言