【发布时间】:2009-08-28 09:37:10
【问题描述】:
问题在代码的cmets中:
define f(x) {
print x^2
}
define g(x) {
print x+2
}
if(f(2)>g(1)) {
print "it works"
}
43 # Why 43 instead of the text "it works"?
a=f(2)
b=g(1)
if(a>b) {
print "it works"
}
# Why nothing?
【问题讨论】:
标签: bc