Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // main.swift
- // Hello LsA
- //
- // Created by Vratislav Holub on 06/02/2019.
- // Copyright © 2019 Vratislav Holub. All rights reserved.
- //
- import Foundation
- print("Kalkulačka")
- var novyPriklad : Bool = true
- while novyPriklad{
- print("a: ")
- let a = Float(readLine()!)!
- print("b: ")
- let b = Float(readLine()!)!
- var platnaVolba : Bool = true
- while platnaVolba{
- print("1. sčítání\n2. odčítání\n3. násobení\n4. dělení")
- let volba : String = readLine()!
- platnaVolba=false
- switch (volba){
- case "1":
- print("Výsledek: \(a+b)")
- case "2":
- print("Výsledek: \(a-b)")
- case "3":
- print("Výsledek: \(a*b)")
- case "4":
- if (b != 0){
- print("Výsledek: \(a/b)")
- }
- else{
- print("Nulou nelze dělit")
- }
- default:
- print("Byla zadaná chybná volba")
- platnaVolba=true
- }
- }
- print("Přejete si zadat další příklad? a/n")
- let pokracovat : String = readLine()!
- if pokracovat.lowercased() == "a"{
- novyPriklad=true
- }
- else if pokracovat.lowercased() == "n"{
- novyPriklad=false
- print("Kalkulačka se vypíná")
- }
- else{
- print("Chybná volba, kalkulačka se vypíná")
- novyPriklad=false
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement