Ex8. 華氏度數轉攝氏
f=32 to 1000 step 32
herrDeng網內搜尋
自訂搜尋
Ads
訂閱:
張貼留言 (Atom)
熱門文章
-
教育部為提昇全民資安素養與電腦防護能力,本部於101年9月5日至11月5日舉辦「全民資安素養自我評量」活動,請在活動期間內踴躍上網檢測資訊安全素養認知程度,並有機會參與抽獎,詳情請參閱活動網站(網址: https://isafe.moe.edu.tw/event
-
先說明一下這是後知後覺的解答,所謂後知就是股票價格已知存在陣列(清單),當然就要用迴圈練習,雙迴圈暴力解需時O(n**2),當然不用,採python單一迴圈解答「最佳股票的買賣時機#LeetCode 121 Best Time to Buy and Sell Stock」,解...
-
url="https://www.twse.com.tw/exchangeReport/STOCK_DAY?response=json&date=20220330&stockNo=2330"
-
你會用C的算子sizeof?
-
Python CPP heap priority queue速解L eetcode 2530. Maximal Score After Applying K Operations heap/priority queue是重要的資料結構,無論是C++的std::priority_q...
-
C++ DP動態規劃解Leetcode 937 Maximum Number of Points with Cost 有些標示medium要比標示hard的問題還要難,Leetcode 1937. Maximum Number of Points with Cost,DP動態規...
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+" 度");
}
}
}
張貼留言