Difference between revisions of "Template:Octal"

From Traveller Wiki - Science-Fiction Adventure in the Far future
Jump to navigation Jump to search
m (Still playing)
Line 1: Line 1:
{{#ifexpr: {{{1}}} < 0|-|}}
+
{{#ifexpr: {{{1}}} < 0|-|}}{{#ifexpr: {{Abs|{{{1}}}}} < 512||{{#expr:({{Abs|{{{1}}}}} / 512) mod 8}}}}{{#ifexpr: {{Abs|{{{1}}}}} < 65||{{#expr:({{Abs|{{{1}}}}} / 64) mod 8}}}}{{#ifexpr: {{Abs|{{{1}}}}} < 8||{{#expr:({{Abs|{{{1}}}}} / 8) mod 8}}}}{{#expr:({{Abs|{{{1}}}}} / 1) mod 8}}<noinclude>
{{#ifexpr: {{Abs|{{{1}}}}} < 512||{{#expr:({{Abs|{{{1}}}}} / 512) mod 8}}}}
 
{{#ifexpr: {{Abs|{{{1}}}}} < 65||{{#expr:({{Abs|{{{1}}}}} / 64) mod 8}}}}
 
{{#ifexpr: {{Abs|{{{1}}}}} < 8||{{#expr:({{Abs|{{{1}}}}} / 8) mod 8}}}}
 
{{#expr:({{Abs|{{{1}}}}} / 1) mod 8}}<noinclude>
 
  
 
This template converts numbers to Octal notatation. use is <nowiki>{{Octal|Number}}</nowiki>
 
This template converts numbers to Octal notatation. use is <nowiki>{{Octal|Number}}</nowiki>

Revision as of 22:16, 22 December 2006

Expression error: Unrecognized punctuation character "{".Expression error: Unexpected < operator.Expression error: Unexpected < operator.Expression error: Unexpected < operator.Expression error: Unexpected < operator.

This template converts numbers to Octal notatation. use is {{Octal|Number}}

The template correctly handles negative numbers.

The Template handles values of up to 4095 correctly. (larger values are truncated on the high end.