0 like 0 dislike
3.6k views
華氏的絕對零度是 -459.67 度,標準大氣壓下水的冰點是 32.00 度;攝氏的絕對零度是 -273.15 度,標準大氣壓下水的冰點是 0.00 度。請撰寫一程式,由使用者輸入一個華氏溫度,程式會將其轉換成攝氏溫度後輸出,請輸出至小數點後四位,第五位四捨五入。

sample input:

-10

sample output:

-23.3333
[Exercise] Coding (C) - asked in 2016-1 程式設計(一)AD by (18k points)
ID: 15421 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00

reshown by | 3.6k views

28 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>

#include *** *** * ** **



int main()

{


** * * * ** x;
* ** *** * * a,b,y=0;
** ** *** * * * *** ** * ** ** *
****** * * * * * ****** *
* * * * *** * *
* * *** ** **** ** ** *** ***
** * *** * * * ** * ** * * *** ** * *
** ** * * ***** * ***** ** *
* ** ** ** ** * ** 0;

}
answered by (-284 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>

int main()

{
** * *** * ** * * * * * num,sum;
** **** * * * * ** * * ****** ** ** ***** *
** * * * *** ** **
*** * **** *** * *******
* * ** ** * **** * * * **** **
* ** ** * **** * *****
***** **** ** ** * * ***** ** * * **
** * * ** * *** * **
** * * * ** *** **** * *
******** ** * * * * * * 0;
** * ** *** *
answered by (-64 points)
0 like 0 dislike
Hidden content!
#include * * ** * *

#include ***** * ***



int main()

{
* * ** ******* * f, c;
* *** *** * * * ** ** ****** ** ** *
*** ** ** * *** * = ((f - 32) * 5) / (9);
** ** * * ** * *** ** ** ** ** **** c);


******** ***** ** *** 0;

}
answered by (-214 points)
0 like 0 dislike
Hidden content!
#include * * ** *****

#include * * **



int main()

{
*** * *** * * * * x, y;
* * * * *** * * * ** ** ****
* *** ***** * = * ** ***** * ** *
*** ******** *** * *** * * *** ** * * y);


* * * ** **** * 0;

 }
answered by (-188 points)
0 like 0 dislike
Hidden content!
* * * ** *

int main()

{
* *** *** **** * * i;
** * ** ** ** **** ** ***** &i);
* *** * * *** * ** * * * * * * *

}
answered by (-94 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>
**** ** ** * *



int main()

{
** * * * ** * ** *** * i,k;
** ** * ** ** * * *
** * ****** * ****** * * *** ** *** **** *


*** * * * ***** *** * =5 * ( i - 32 ) / 9;
**** * * *** *
* **** * *** * * * *** ***** * * *** *** * ***
* ** ** * ** ***
** * * * * *** *** *** * ** ** ***
** * * ** *** *** 0;





}
answered by (-264 points)
0 like 0 dislike
Hidden content!
#include * ** **

#include * * * * * **

#include ******** *

int main()

{
*** **** * * ** *** *** k=0;
* ** * ** ** * **** * *** * c=0;
* * ** * * * ** ** * **** * * * *** * &k);
* *** * *** * ** ** * = (k-32) * 5/9;
** * ******** * ***** ****** * ** * * *
** *** * ** *** ** ** * * 0;

}
answered by (-202 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>

#include<stdlib.h>

int main()

{
*** *** ** * * *** * num=0,sum=0;
****** * ***** *** *** * * * * * * * * *
*** * ******* ** ***** *
* ** ** * ** *** **
***** * * ** * ****** * * * **
* ** * * * * ** *
*** *** * ***** * ** * ** ** ** *
* **** **** ** * *
** *** * * **** **** *
* ** * ** * ** * * ** 0;
* * **** **** * ******
answered by (-64 points)
0 like 0 dislike
Hidden content!
#include *** *** * ***

#include *** ** *** * ***



int main()

{
* *** ** ** * ** * F = 0 , C = 0 ;
* **** * *** ** * * * * ***** * * * *


* ** **** * * * *** = 273.15/(32+459.67)*(F + 459.67)-273.15;
** ** ** ** ** * * * * ** *** *** ******
*** *** * ***** ** * *
** * * ** * *** *** * * * *** * * * *** *
******* * ** ** *** **** 0;

}
answered by (-162 points)
0 like 0 dislike
Hidden content!
#include<stdio.h>
*** * ** **** ** *****

#include<math.h>

int main()

{
** ** ** ** * *** **** ** i , j ,sum=0;
** * ** ** * ******** * * v[100]={0};
* * * * **** ** *
** * * * * ** * ** * *** a,b ;
***** **** * *** ***
** * ***** * * *** *** * ** * * ** * **** , &a);
* *** ** *** *******
* * * * * * ** ** ** *
** *** *** * ** ***
* *** ** * ***** *** **** * ** ,b);


* * ** * * * ** ***** * * **
* ** ** ***** *** * 0 ;

* * * ** * ** * ** *

}
answered by (-186 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.17.66
©2016-2025

Related questions

0 like 0 dislike
5 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15448 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 1k views
0 like 0 dislike
33 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15445 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 3.9k views
0 like 0 dislike
11 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15441 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 2k views
0 like 0 dislike
73 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15439 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 6.9k views
0 like 0 dislike
41 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15427 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 4.8k views
12,783 questions
183,442 answers
172,219 comments
4,824 users