Template:1010PrAD

From CompSciWiki
Jump to: navigation, search


This template is used for the Program-A-Day page. Instructions and example usage are below.

Original design by User:WikiSysop. Modified and updated by User:BrianT and User:KarelK.


Example Code Usage

{{1010PrAD
|ProblemName=The name of the program

|Problem=The problem 

|SideSectionTitle=...by students

|SideSection=
[[Image:OperatingSystemExample.jpg|center|200px]]
<BR>
An image or By Students section

|Solution=The solution...

|SolutionCode=public class MySolution
{
  public static void main ( String [] args )
  {
    System.out.println("Hello, world!");
  }
}
}}

Current Issues

  • In the SolutionCode parameter, all OR pipe characters ( | character ) should be replaced with the pipe wiki template: {{!}}
  • Syntax highlighting will have to wait for the Wikimedia system to be updated to a more recent version.
  • Note that there is NO WORDWRAP in use inside <pre> tags. Please be sure to restrict the number of characters per line in your SolutionCode parameter and inside any <pre> tags.

Sample Output

Please note that the layout gets a bit skewed while displaying the template in itself; if you don't have horribly oversized images, everything will look fine when used in production.

Everything below this line is the sample output



Back to the Program-A-Day homepage

Problem

The problem

 

...by students

OperatingSystemExample.jpg


An image or By Students section

Solution

The solution...

Code

Solution Code

Back to the Program-A-Day homepage