how can i be happy in swift

To create a program that can help you find some ways to be happy, let's start with the following steps in Swift:

  1. Define an array of activities or tasks that you enjoy doing or that make you happy.
main.swift
let happyActivities = ["reading a book", "going for a walk", "listening to music", "watching a movie", "spending time with friends and family"]
144 chars
2 lines
  1. Create a function that randomly selects an item from the array.
main.swift
func getRandomActivity() -> String {
    let randomIndex = Int.random(in: 0..<happyActivities.count)
    return happyActivities[randomIndex]
}
143 chars
5 lines
  1. You can now call the getRandomActivity() function to suggest an activity to make you happy.
main.swift
print("Your random happy activity for today is: \(getRandomActivity())")
73 chars
2 lines
  1. If you want to take it a step further, you could create a loop that presents the user with a different suggestion every time they run the program.
main.swift
var i = 1
while i <= 10 {
    print("Activity \(i): \(getRandomActivity())")
    i += 1
}
90 chars
6 lines

By randomly selecting activities from a list, this Swift program offers suggestions for how to foster happy emotions in your daily life.

gistlibby LogSnag