This file contains 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
import 'dart:io'; | |
void main() { | |
// Problem Statement # | |
// Given the final percentage a student has gotten at the end of a semester, | |
// you need to write a program that decides if the student has passed or failed the semester. | |
// If the percentage is higher than or equal to 60, the student has passed the semester. | |
// If the percentage is lower than 60, the student has failed the semester. |
This file contains 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
import 'dart:io'; | |
void main() { | |
// Problem Statement # | |
// Given the final percentage a student has gotten at the end of a semester, | |
// you need to write a program that decides if the student has passed or failed the semester. | |
// If the percentage is higher than or equal to 60, the student has passed the semester. | |
// If the percentage is lower than 60, the student has failed the semester. |