Swift - Loops
Find the mistake in this Swift code:
var count = 1
repeat {
print(count)
count += 1
} while count < 5
print(count)var count = 1
repeat {
print(count)
count += 1
} while count < 5
print(count)15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions