Created
July 16, 2020 23:20
-
-
Save wheel1992/c61ed6994587e7068f601ac12ceee7c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void main() { | |
| print('QUESTION 3'); | |
| String _result = ""; | |
| const _data = ["f", "u", "n"]; | |
| for(var i = 0; i < _data.length; i++) { | |
| _result += _data[i] * (i + 1); | |
| } | |
| print(_result); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment