Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Swift Basics (retired) Operators Binary Operators

i dont understand

nn

area.swift
// the height and width of a wall
let height = 120.0 // in inches
let width = 144.0 // in inches
let areaInFeet :Double = (Area / 12) * (Width / 12)

1 Answer

Will Feldman
Will Feldman
3,121 Points

I'm going to explain what is going on in the code first. You are assigning three constants. The height, width, and the area. To get to the area of something you must multiply the height and the width. In this example, I assume you know what is going on and your issue is the bug you are getting. This is because there is not varible named "Area" or "Width". To fix your code change "Area" to "height" and change "Width" to "width". Lowercase is important to helping the computer understand your code. Hope this helped!