Skip to content

Instantly share code, notes, and snippets.

@40823142
Last active November 19, 2019 16:36
Show Gist options
  • Save 40823142/0531e7bcacabc538c5d646e923bb402f to your computer and use it in GitHub Desktop.
Save 40823142/0531e7bcacabc538c5d646e923bb402f to your computer and use it in GitHub Desktop.
攝氏轉華氏
//在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