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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by maki1337

  1. maki1337

    Is my formula wrong or the intrinsic function "abs" doesn't work?

    program Quadraticr integer A,B,C print*,"This program computes for the roots of a polynomial" print*,"Please input the coefficients of your polynomial A,B,and C,where A,B, and C is in the form AX^2+BX+C " read*, A,B,C print*,"You have inputed:" print*, A,"X^2+",B,"X+",C,"=0" call quad(A,B,C) end...
  2. maki1337

    Is my formula wrong or the intrinsic function "abs" doesn't work?

    I am using f95. Can anyone help me program Quadraticr integer A,B,C print*,"This program computes for the roots of a polynomial" print*,"Please input the coefficients of your polynomial A,B,and C,where A,B, and C is in the form AX^2+BX+C " read*, A,B,C print*,"You have...
  3. maki1337

    Noob in fortran95 needs help :(

    Good day guys, I am making a dama game for our project and I don't know how to do it. The dama game that I am making is only limited for 2 players, I think I will make an AI after finishing the 2-player mode. The program that I am working on will look like these fortran file...

Part and Inventory Search

Back
Top