HTMLify
calculate-area-of-rectangle.swift
Views: 699 | Author: demo
1 2 3 4 | let length = 5.0 let width = 3.0 let area = length * width print("Area of the rectangle: \(area)") |
1 2 3 4 | let length = 5.0 let width = 3.0 let area = length * width print("Area of the rectangle: \(area)") |