My Rosettacode task solutions in fortran:
Parallel calculations (Prime Decomposition in parallel)
- Prime_Decomposition_Parallel.f90 (compile with -fopenmp)
Linux CPU utilization (Display the current CPU utilization, as a percentage, calculated from /proc/stat.)
- get_cpu_times.f90
IBAN (Validate the following fictitious IBAN: GB82 WEST 1234 5698 7654 32)
- iban.f90
Remove duplicate elements (Given an Array, derive a sequence of elements in which all duplicates are removed.)
- remove_dups.f90