回 帖 发 新 帖 刷新版面

主题:韩信点兵(中国剩余定理)

韩信点兵又称为中国剩余定理,相传汉高祖刘邦问大将军韩信统御兵士多少,韩信答说,每3人一列余1人、5人一列余2人、7人一列余4人、13人一列余6人。刘邦茫然而不知其数。问最少多少兵士?

回复列表 (共34个回复)

11 楼

冥顽不灵,死口硬,服了你

12 楼

多谢

13 楼

8;楼的不行啊.你的程序是不能跳出循环的

14 楼

树袄提太扁,还是用人脑好一点^_^

15 楼

n=6
do
if (n mod 3 =1)and(n mod 5=2)and (n mod 7=4) then
    ? "最少人数是:";n;"人"
    n=0
else
    n=n+13
endif
loop n=0
end

16 楼


2333

17 楼

for a=10 to 5000
if a mod 3=1 and a mod 5=2 and  a mod 7=4 and a mod 13=6 then ? a:end
next a
end
这道题太弱智了!

18 楼

for a=1 to 100
if a mod 3=1 and a mod 5=2 and a mod 7=4 and a mod 13=6 then ? a:end
next a
end
如果范围小了,还可以再加大点。

19 楼

这是一道简单的题
但应该怎么做,快,效率高,
需要各施各法.

20 楼


for i=0 to 1000
if (n^s)then
S=S^S
end if
if (n^S)then
......
next

我来回复

您尚未登录,请登录后再回复。点此登录或注册