Skip to content

Instantly share code, notes, and snippets.

View bookwarmdev's full-sized avatar
😀

Amoo .O. Faruk bookwarmdev

😀
View GitHub Profile
@bookwarmdev
bookwarmdev / main.dart
Last active November 6, 2021 14:43
#1 Capstone Project -2
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.
@bookwarmdev
bookwarmdev / main.dart
Last active November 6, 2021 13:39
#1 Capstone Project
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.