如果你使用過目前眾多網站上的電子公告板程序的話,那你應該會知道電子公告板程序為了提高頁面的讀取速度,一般不會將所有的帖子全部在一頁中羅列出來,而是將其分成多頁顯示,每頁顯示一定數目的帖子數,譬如 20 條。本項目提供了用JSP實現這一功能的方法。
上傳時間: 2015-01-10
上傳用戶:weiwolkt
這是一個用VB編寫的快要完成的競賽游戲,使用計算機控件的賽車(最多可達20輛!),包括一個跑道編輯器,很多不同風格的跑道,對于任何一個想要創建一個競賽游戲的人來說這是一個非常好的開端。對于以下方面它也是一個非常好的示例:游戲物理學,例如碰撞檢測和磨擦,快速圖形,旋轉角度涉及到的數學,計算機人工智能(這些賽車能按任何一個用戶制造的跑道進行競賽!),制造級別編輯器,以及如何用相當少的代碼來制造一個酷的游戲。
上傳時間: 2015-01-10
上傳用戶:firstbyte
快速排序的遞歸解演示,用20個字符串代表20個數,顯示每次分組結果,延時10000。如果在你的機子上太快,可以加長延時。
上傳時間: 2015-02-11
上傳用戶:縹緲
這是一個調用系統中的一些功能對話框的程序,包括顯示“打開方式”對話框、打印測試頁、映射網絡驅動器等等,共有超過20個不同的功能
上傳時間: 2015-03-22
上傳用戶:whenfly
本程序是對一幅圖像進行變灰度、旋轉、銳化、在圖像上畫圓或橢圓、直線等操作的程序。 說明:要實現相應功能的操作,需要在輸入框內輸入正確的表達式。舉例如下: 畫直線:x1=20,y1=15,x2=150,y2=100 畫圓:x=100,y=100,r=20 畫橢圓:x=100,y=100,r=20,a=16,b=9 旋轉:x=30(度數),ax=100,ay=90 銳化:x=80
上傳時間: 2013-12-24
上傳用戶:songrui
實現tracert,已經能夠執行,測試過,這次夠20字了吧,
標簽: tracert
上傳時間: 2015-04-14
上傳用戶:xinzhch
多用戶系統,用戶可擁有自己的音樂盒,每個音樂盒可以收藏歌曲20條,采用優化的網站結構,使數據庫查詢更合理,服務器占用資源更少,暫時無后臺功能,將在更新版中推后后臺功能 用戶名:polo 密碼:111111
標簽: 多用
上傳時間: 2015-04-17
上傳用戶:jqy_china
For the incomplete methods, we kept the representation of the queens by a table and the method of calculation to determine if two queens are in conflict, which is much faster for this kind of problems than the representation by a matrix. heuristics: descent. Tests: 100 queens in less than 1 second and 67 iterations. 500 queens in 1 second and 257 iterations. 1000 queens in 11 seconds and 492 iterations. heuristics: Simulated annealing. Tests: 100 queens in less than 1 second and 47 iterations. 500 queens in 5 seconds and 243 iterations. 1000 queens in 13 seconds and 497 iterations. heuristics: based on Simulated Annealing. Tests: 100 queens in less than 1 second and 60 iterations. 500 queens in 1 second and 224 iterations. 1000 queens in 5 seconds and 459 iterations. 10 000 queens in 20 minutes 30 seconds and 4885 iterations.
標簽: the representation incomplete methods
上傳時間: 2015-05-05
上傳用戶:1159797854
“中尺度雨量站數據軟件”使用說明 目前江西省中尺度自動雨量站緊鑼密鼓建設,是北京一家公司提供的硬件和服務,軟件也是他們提供的。省局也開通了數據查詢網站:http://172.20.112.247/ 但是這家公司的雨量查詢軟件還是有一些缺點,主要體現: 1. 該軟件是用ASP開發的,查詢數據速度慢。 2. 軟件查詢很不方便 3. 軟件沒有集中的數據顯示功能 4. 軟件沒有報表功能,這些在實際都很有必要的 5. 該軟件統計方面功能較弱 6. 如果氣象局的用戶需要這方面的資料,給用戶資料比較麻煩 針對上述的缺點,結合我多年的軟件開發經驗。我用Visual Basic、Visual C和Access數據庫開發了一個《中尺度自動雨量站數據管理》軟件,功能主要是針對上述的不足開發的。
上傳時間: 2015-05-12
上傳用戶:yd19890720
數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上傳時間: 2015-05-21
上傳用戶:daguda