Skip to content

Instantly share code, notes, and snippets.

View jeremiahseun's full-sized avatar
😎
Ruling with Christ!

Jeremiah Oluwaseun Erinola jeremiahseun

😎
Ruling with Christ!
View GitHub Profile
@jeremiahseun
jeremiahseun / func.dart
Created February 25, 2022 21:22
Function to find Sum of Squares of any Two Number
import 'dart:io'
void main() {
// THE VALUE TO BE USED
late int firstNumber;
late int secondNumber;
late int squareFirst;
late int squareSecond;
late int total;