void main() { print('Om Namah Shivay'); // nested if -else int age = 16; if (age == 15) { print('age = 15'); } else if (age == 16) { print('age = 16'); } else { print('That person neither born nor die.'); } }
I understood
void main() { print('Om Namah Shivay'); // nested if -else int age = 16; if (age == 15) { print('age = 15'); } else if (age == 16) { print('age = 16'); } else { print('That person neither born nor die.'); } }
I understood
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)