5505 - I2P_LAB02_2   

Description

I2P_LAB02_2

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

HINT

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

Input

攝氏溫度

Output

華氏溫度

Sample Input  Download

Sample Output  Download

Tags




Discuss