Search:

Type: Posts; User: Markusob

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,440

    File report question, need advice..

    A Game maintains scores for its players in a comma delimited sequential file “scores.txt” with the record structure outlined below.

    G001,Hot Shot,280
    G002,Loose Cannon,750
    G003,FireFox,20
    ...
  2. Replies
    2
    Views
    1,770

    Pass by reference question..

    Scannig through a program a simple program at the moment but need to understand "pass by rederence" to coomplete it... Could someone explain what this means??
  3. Thread: Error in code

    by Markusob
    Replies
    6
    Views
    1,655

    Just cycling through past exams papers and came...

    Just cycling through past exams papers and came across it...
    not homework
  4. Replies
    2
    Views
    1,098

    cheers..

    cheers..
  5. Replies
    6
    Views
    1,169

    I just asked a simple question... its the type of...

    I just asked a simple question... its the type of stuff thats coming up on the exam so if you dont want to help just stop commenting!
  6. Replies
    2
    Views
    1,098

    Array Question problem

    Im given two arrays
    int [] scores1 = {2,5,8,10}
    int [] score2 = {5,6,8,12}

    and asked to multiply 1st element of scores 1 by last element of scores2..

    would i use a for statement for this??
    ...
  7. Thread: Error in code

    by Markusob
    Replies
    6
    Views
    1,655

    what is the problem with this??

    what is the problem with this??
  8. Replies
    6
    Views
    1,169

    Not homework my friend.. Im studying for an...

    Not homework my friend..

    Im studying for an exam an need a little help for revision is all.
  9. Thread: Error in code

    by Markusob
    Replies
    6
    Views
    1,655

    Error in code

    Can anyone find logical error in this code,explain it and how to fix???

    int myNumber;
    int sum = 0;

    Console.Write("Enter value : " );
    myNumber = int.Parse(Console.ReadLine());

    while...
  10. Replies
    6
    Views
    1,169

    Array question

    consider the following:
    int [] numbers1 = {1,3,6,9};
    int [] numbers1 = {2,4,6,8};
    int result;
    int total;

    using a for statement write code that multiplies each element of numbers1 array by its...
  11. Replies
    1
    Views
    943

    Array Question

    Could someone answer this:
    Consider:
    int[] scores1 = {2,5,8,10}
    int [] scores2 = {5,6,8,12}
    int result;
    int total;
    write a statement that multiplies 1st element of scores1 array by last element...
  12. Replies
    5
    Views
    2,898

    Thanks thats excellent

    Thanks

    thats excellent
  13. Replies
    5
    Views
    2,898

    Flow chart question

    I have problem with this question:
    Draw a flow chart to illustrate the working of the following code:
    if(costs==revenue)
    console.writeline ("Break even");
    else if(costs < revenue) {
    profit...
Results 1 to 13 of 14