5503 - I2P_LAB02_02   

Description

請將攝氏溫度轉換成華氏溫度。
公式為:華氏 = 攝氏 x (9/5) + 32

HINT

#include 
??? tConver( ??? tc ){
  	return tc * 9 / 5 + 32;
}
int main(){
    	??? tc;
  	scanf(???, &tc);
 	printf( ???, tConver( tc ) );
  	return 0;
}

 

Input

攝氏溫度

Output

華氏溫度

Sample Input  Download

Sample Output  Download

Tags




Discuss