Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to generate random integer numbers in fortran?

–5 votes
asked May 6, 2020 by sarah (110 points)

2 Answers

–1 vote
answered Feb 20, 2021 by Abhinav Mahajan (290 points)
import random

random.randint(1,2)

thaat founds a random nnumber between 1 and 2
commented Feb 22, 2021 by Peter Minarik (84,720 points)
This is not Fortran.
+1 vote
answered Feb 22, 2021 by Peter Minarik (84,720 points)
After a bit of googling I found this:

https://masuday.github.io/fortran_tutorial/random.html
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...