Skip to content

Instantly share code, notes, and snippets.

View Aaron2464's full-sized avatar
:octocat:
Keep going. And just do it !!

Aaron Aaron2464

:octocat:
Keep going. And just do it !!
View GitHub Profile
@Aaron2464
Aaron2464 / CODE TEST
Created September 27, 2021 20:16
CODE TEST
// prints each number from 1 to 100 on a new line.
// For each multiple of 3, print "Bud" instead of the number.
// For each multiple of 5, print "Vue" instead of the number.
// For numbers that are multiples of both 3 and 5,
// print "Budvue should consider $yourName for this position" instead of the number
void main() {
String yourName = 'Aaron';
for (int i = 1; i <= 100; i++) {
if(i % 15 == 0){