I am wondering if there's a better way to do the following. This code works as it is but it seems like a lot of numbers and variables to keep track of and I thought there may be a more consolidated way to do the same thing. The variables being assigned values are used as hash keys and array locations further along in the code. Thanks.

if ($h == 1) { $j=$h+1; $p=0; $v=9; } if ($h == 3) { $j=$h+2; $p=1; $v=10; } if ($h == 5) { $j=$h+3; $p=0; $v=11; } if ($h == 7) { $j=$h+4; $p=1; $v=12; } if ($h == 10) { $j=$h+5; $p=0; $v=5; } if ($h == 12) { $j=$h+6; $p=1; $v=6; } if ($h == 14) { $j=$h+7; $p=0; $v=7; } if ($h == 16) { $j=$h+8; $p=1; $v=8; }

In reply to if statement consolidation by shortyfw06

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.