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 IamaSherpa 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. livingenzyme

    Passing parameters back and forth

    Yes, I do suck. I can't get your example to compile. public class test { public static void main (String[] args) { char a = ' '; int b = 1; CI ci = sub (a, b); System.out.print (ci.a + " " + ci.b); } class CI { char c; int i; new CI...
  2. livingenzyme

    Passing parameters back and forth

    In other words, java sucks. I should have known this when I started learning it.
  3. livingenzyme

    Passing parameters back and forth

    How do I pass multiple parameters back and forth between main and subroutine? Say I have the following program. public class test { public static void main(String[] args) { char a=' '; int b=1; sub(a,b); System.out.print(a +" " +b); } static void sub(char a,int b) { a='h'...
  4. livingenzyme

    Help on fortran 95 output to file

    If you were here right now I would give you a big wet kiss.
  5. livingenzyme

    Help on fortran 95 output to file

    Output to file is easy. What I'm trying to do is output to the end of the file so that nothing that was already in the file is lost. Say I have a hypothetical file a.txt. Everytime I run my program, I want it to output certain info to a.txt at the end of the file for record keeping. How do I...

Part and Inventory Search

Back
Top