is_even_ai 1.0.0 copy "is_even_ai: ^1.0.0" to clipboard
is_even_ai: ^1.0.0 copied to clipboard

Check if a number is even with the power of AI

example/is_even_ai_example.dart

import 'package:is_even_ai/is_even_ai.dart';

void main() async {
  IsEvenAi.global = IsEvenAiNoAi();

  print(await IsEvenAi.global.isEven(2)); // true
  print(await IsEvenAi.global.isEven(3)); // false
  print(await IsEvenAi.global.isOdd(4)); // false
  print(await IsEvenAi.global.isOdd(5)); // true
  print(await IsEvenAi.global.areEqual(6, 6)); // true
  print(await IsEvenAi.global.areEqual(6, 7)); // false
  print(await IsEvenAi.global.areNotEqual(6, 7)); // true
  print(await IsEvenAi.global.areNotEqual(7, 7)); // false
  print(await IsEvenAi.global.isGreaterThan(8, 7)); // true
  print(await IsEvenAi.global.isGreaterThan(7, 8)); // false
  print(await IsEvenAi.global.isLessThan(8, 9)); // true
  print(await IsEvenAi.global.isLessThan(9, 8)); // false
}
copied to clipboard
3
likes
0
points
70
downloads

Publisher

verified publishermichaeldark.dev

Weekly Downloads

2024.10.08 - 2025.04.22

Check if a number is even with the power of AI

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on is_even_ai