(define pi 3.14159)
(define radius 10)
(* pi (* radius radius))
(define circumference (* 2 pi radius))
circumference
(define pi 100000)
pi
circumference
(define (square x) (* x x))
(define (sum-of-squares x y) (+ (square x) (square y)))
相关文章
- 03-17Spring Boot2基础1
- 03-17认识Runtime1
- 03-17【学习笔记】网络流常见模型(一):有限制的图上最短(长)路
- 03-1720200129模拟赛T1 string
- 03-17#0/1分数规划,二分,树上背包,DFS序#洛谷 4322 JZOJ 4512 BZOJ 4753 最佳团体
- 03-17topcoder srm 701 div1 -3
- 03-172015第18本:从0到1,ZERO to ONE, Notes on startups, or how to build the future
- 03-17loj #10134. 「一本通 4.4 练习 1」Dis
- 03-172018NOIP提高组Day1(铺设道路&货币系统&赛道修建)
- 03-17树上前缀和学习入门笔记