數字運算,判斷一個數是否接近素數 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
linux操作系統下運行,print current directory s files
上傳時間: 2014-01-13
上傳用戶:shawvi
2^x mod n = 1 acm競賽題 Give a number n, find the minimum x that satisfies 2^x mod n = 1. Input One positive integer on each line, the value of n. Output If the minimum x exists, print a line with 2^x mod n = 1. Print 2^? mod n = 1 otherwise. You should replace x and n with specific numbers. Sample Input 2 5 Sample Output 2^? mod 2 = 1 2^4 mod 5 = 1
標簽: mod satisfies minimum number
上傳時間: 2015-06-02
上傳用戶:qlpqlq
遺傳求解求解一元二次方程的解源程序(下載點擊GAdownload.c) 說明: 1 popu變量表示群體規模 2 L變量表示染色體的長度 3 pc,pm變量分別代表是交叉概率和變異概率 4 gen是迭代的代數 4 chromosome是一個全局的二維數組,里面存放的是個體的編碼 5 程序最后的執行結果輸出到了text.txt文本文件中
標簽: GAdownload popu 變量 概率
上傳時間: 2015-06-03
上傳用戶:youth25
transplant uc/os2 on coldfire5307 編譯通過,并且還有驗證程序,2個task :循環點led,和串口print字符串
標簽: transplant coldfire 5307 os
上傳時間: 2014-01-16
上傳用戶:稀世之寶039
移植Nuclues_RTC到coldfire5307在diab下編譯通過,并且主程序為串口通信的print字符串
標簽: Nuclues_RTC coldfire 5307 diab
上傳時間: 2013-12-17
上傳用戶:shanml
一個vb開發,可以動態生成SQL的"拼裝類". 例如: sql.strsql="select ? from ? " sql.setFieldEx "field1" sql.setFieldEx "tbl" debug.print sql.strsql 輸出:select field from tbl
標簽: sql setFieldEx setFieldE select
上傳時間: 2013-12-25
上傳用戶:685
定義一個字符串類String,其私有成員為一個字符串指針。設計構造函數,拷貝構造函數,析構函數,設置新值函數Set, 打印成員值函數Print。借助此String類,將操作符"=="、">"、"<"的重載函數設置為String類的成員函數,實現對操作符"=="、">"、"<"的重載,使之能直接比較兩個String類類型的字符串的大小,設計各種情況調用此三個重載操作符。
上傳時間: 2013-12-26
上傳用戶:youth25
首先定義一個點類Point,其私有成員為其坐標X,Y。設計構造函數,拷貝構造函數,析構函數(可以什么都不做,只打印信息,表示其被調用),設置新值函數Set, 打印成員值函數Print。再定義一個線類Line,線類是在公有繼承點類的基礎上,新增私有成員斜率S,并設計構造函數,拷貝構造函數,析構函數(可以什么都不做,只打印信息,表示其被調用),設置新值函數Set, 打印成員值函數Print以及其它你認為對訪問此Line類對象有用的成員函數。并用此Line類定義對象,調用所有成員函數。尤其是考察構造函數的調用順序。
上傳時間: 2015-07-07
上傳用戶:xfbs821
Effective C++ Third Edition 55 Specific Ways to Improve Your Programs and Designs By Scott Meyers ............................................... Publisher: Addison Wesley Professional Pub Date: May 12, 2005 Print ISBN: 0-321-33487-6 Pages: 320
標簽: Effective Specific Programs Edition
上傳時間: 2015-07-18
上傳用戶:caiiicc