Skip to content

Instantly share code, notes, and snippets.

@Ansarina
Created October 22, 2015 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ansarina/148cf033e1f46710137f to your computer and use it in GitHub Desktop.
Save Ansarina/148cf033e1f46710137f to your computer and use it in GitHub Desktop.
Program Add2Vector3DSimpleExample
Real,dimension(3)::A,B,C
Integer::i
Do i=1,3
Print ‘Please enter A(‘, i , ‘)’
Read A(i)
Print ‘Please enter B(‘, i , ‘)’
Read B(i)
C(i)=A(i)+B(i)
Print ‘C(‘,i,’)=’, C(i)
End do
End Program
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment