Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonyborriello/fortrancalculator
https://github.com/anthonyborriello/fortrancalculator
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/anthonyborriello/fortrancalculator
- Owner: anthonyborriello
- Created: 2024-02-10T11:21:00.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-10T11:45:59.000Z (11 months ago)
- Last Synced: 2024-02-10T12:29:01.624Z (11 months ago)
- Language: Fortran
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Un semplice programma in fortran che ho pubblicato per il mio video su Youtube:
https://youtu.be/Vr209n8IDoMSe 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
```