Last active
November 19, 2019 16:36
-
-
Save 40823142/0531e7bcacabc538c5d646e923bb402f to your computer and use it in GitHub Desktop.
攝氏轉華氏
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//在F設置攝氏溫度 | |
int F=0; | |
num C=F*(9/5)+32; | |
num G=F*C; | |
main(){ | |
print ("攝氏$F度等於華氏$C度"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment