+ plus
- minus
/ slash
* asterisk
% percent
< less-than
> greater-than
<= less-than-equal
>= greater-than-equal
(順帶學點英語~hhh)
print "i will now count my chickens:"
print "hens",25+30/6
print "roosters",100-25*3%4
print "now i will count the eggs:"
print 3+2+1-5+4%2-1/4+6
print "is it true that 3+2<5-7?"
print 3+2<5-7
print "what is 3+2?",3+2
print "what is 5-7?",5-7
print "oh,that's why it's false."
print "how about some more."
print "is it greater?",5>-2
print "is it greater or equal?",5>=-2
print "is it less or equal?",5<=-2
執行結果:
任務順利完成,但不能忽略每個問題後的「加分習題」部分。
其實,對於「浮點數」,從初學c語言開始,我的理解就朦朦朧朧的,很片面。
我至今也沒能搞清楚這些資料型別背後的原理。這裡,也算是先挖乙個坑吧,以後慢慢填。
習題 3 數字和數學計算
每一種程式語言都包含處理數字和進行數學計算的方法。不必擔心,程式設計師經常撒謊說他們是多麼牛的數學天才,其實他們根本不是。如果他們真是數學天才,他們早就去從事數學相關的行業了,而不是寫寫廣告程式和社交網路遊戲,從人們身上偷賺點小錢而已。這章練習裡有很多的數 算符號。我們來看一遍它們都叫什麼名字。你要...
笨辦法學python 習題3 數字和數學計算
熟悉運算符號 plus加號 minus減號 slash 斜槓除法 asterisk 星號乘法 percent 百分號除法的餘數 less than 小於greater than 大於號 less than equal 小於等於號 greater than equal 大於等於號 例 python2 ...
數字和數字封裝
1 package com.jdk7.chapter3 2 3 數字和數字封裝 4 byte是byte的封裝,byte沒有任何功能,要想使用byte的功能,就必須將byte轉換為byte,通過呼叫byte的物件操作byte型別的值5 author administrator6 7 8public c...