方案编程语言
我正在尝试编写一个方案程序,但我正在尝试弄清楚如何执行此操作:
假设,我调用了一个名为 addFunc 的函数,该函数需要两个输入数字, 计算每个数字的平方和并返回两个和的总和 数学中的平方
:如果使用 3 和 2 调用 addFunc,它将把 3 的平方和计算为 1*1 + 2*2 + 3*3 = 14 并将 2 的平方和计算为 1*1 + 2*2 = 5,然后返回 19 作为 结果。
我如何用方案编程语言编写这个?
I am trying to write a scheme program, but I am trying to figure out how can i do this:
suppose, I have called a function named addFunc, that takes two input numbers,
computes the sum squares of each number and returns the sum of the two sum
squares
in math, : if addFunc were called with 3 and 2, it will computer the sum squares of 3 as 1*1
+ 2*2 + 3*3 = 14 and sum squares of 2 as 1*1 + 2*2 = 5 and then returns 19 as a
result.
how can i write this in scheme programing language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SICP 是一个很好的学习计划资源。
SICP is a good resource for learning scheme.