So implement the algorithm as follows:

  1. Read the first line. Print it. Store its values.
  2. Read the second line. Print it if it matches the first line that you stored. Now replace your stored line with the second line.
  3. Read the third line. Print it if it matches your stored line. Store the line.
  4. Read the fourth line. Print it if it matches your stored line. Store the line.
  5. Read the fifthe line. Print it if it matches your stored line. Store the line.
  6. Read the sixth line. Print it if it matches your stored line. Store the line.
  7. Read the seventh line. Print it if it matches your stored line. Store the line.
  8. Continue these steps again and again until out of lines.

Each time you are storing the current line so that on the next iteration you can refer back to it. Whenever you store the current line, it replaces the line you previously stored.

You still haven't taken the time to show us sample output that the program would produce with specific sample input. Anyway, get started implementing the algorithm I've described, and let us know when you're stuck.


Dave


In reply to Re^3: Next Line Assigning to A Scalar by davido
in thread Next Line Assigning to A Scalar by rmwheeler

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.