wmi-parprog/01_Python_C_C++_Java/ex1.md
Arkadiusz Hypki 6c35d36a36 'backup'
2025-02-24 10:29:36 +01:00

370 B
Raw Blame History

In the file is_prime there are a few numbers.

  1. Write a Python, C/C++ and Java programs and check whether it is a prime number of not.

Remark 1: There are some algorithms which can simplify this task, like MillerRabin. Please, do not use them. The goal is to compare the code from different programming paradigms.

Remark 2: Please, do not use external libraries.