Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. guilhermemarques

    Problem with precision solving one math series!

    Hey guys, I have to program a Fortran code to solve the problem: S = 1/1 + 1/2 + ... + 1/T to get the largest S possible. Actually my fortran program is like: program test implicit none real :: T = 17000000, S = 0; do while (T<17000000) S = S + 1/T...

Part and Inventory Search

Back
Top