文章列表
def printKfkj(n)
if n==1 then
print "1*1=1\t\n";
else
printKfkj(n-1);
for i in 1..n
# print i.to_s + "*" + n.to_s + "=" + (i*n).to_s + "\t";
print "#{i}*#{n}=#{i*n}\t";
end
print "\n";
end
end
printKfkj( ...
- 2008-01-04 08:09
- 浏览 1065
- 评论(0)
看着别人可以打开或关闭DIV窗口,感觉比较好奇是怎么实现的,今天也稍微研究了一下。
html 代码
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; ...
- 2007-12-29 20:23
- 浏览 5826
- 评论(0)
今天去面试,其中有一题,用递归法打印出九九乘法口诀,想了想,应该如下实现,总算没有丢脸。
java 代码
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
method1(9);
}
public static void method1(int i) {
...
- 2007-12-29 17:00
- 浏览 2686
- 评论(0)
请看下面的代码吧,比较简单。
<html>
<head>
<title>一个TAB页的简单JS实现</title>
<style type="text/css">
#div0{
width:300px;
...
- 2007-12-27 08:41
- 浏览 4818
- 评论(0)