Lab 1 - Thursday
-
Write and compile a Dart program that prints the first 50 Fibonacci numbers. The program should generate the sequence dynamically (not hardcoded values).
-
Write a Dart program that extracts all words from a phrase and prints only the longest word(s).
-
Write a Dart function that extracts all numbers from a text. Numbers can be integers or doubles. Print the count of the numbers, average and maximum of them.
-
Write a dart function that converts a string of characters written in
lowercase_with_underscoreintoUppeCamelCase.