Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anthonyborriello/fortrancalculator


https://github.com/anthonyborriello/fortrancalculator

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

Un semplice programma in fortran che ho pubblicato per il mio video su Youtube:
https://youtu.be/Vr209n8IDoM

Se stai utilizzando Linux Debian, installa Fortran:
```plaintext
sudo apt-get install gfortran
```
Effettua il download del file fortran
```plaintext
wget https://raw.githubusercontent.com/anthonyborriello/fortrancalculator/main/somma_numeri.f90
```
Compila il programma utilizzando il compilatore gfortran:
```plaintext
gfortran -o somma_numeri somma_numeri.f90
```
Esegui il programma compilato in questo modo:
```plaintext
./somma_numeri
```