第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

代碼
提交代碼
interface Rectangle { type: 'rectangle', width: number, height: number } interface Circle { type: 'circle', radius: number } interface Parallelogram { type: 'parallelogram', bottom: number, height: number } function area(shape: Rectangle | Circle | Parallelogram) { switch (shape.type) { case 'rectangle': return shape.width * shape.height case 'circle': return Math.PI * Math.pow(shape.radius, 2) case 'parallelogram': return shape.bottom * shape.height } } let shape: Circle = { type: 'circle', radius: 10 } console.log(area(shape))
運(yùn)行結(jié)果