Baklava in COBOL

Published on 18 April 2026 (Updated: 18 April 2026)

Welcome to the Baklava in COBOL page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

identification division.
program-id. baklava.

data division.
working-storage section.

01 max-width        pic 9(2) value 21.
01 half-width       pic 9(2).

01 row              pic 9(2).
01 num-spaces       pic 9(2).
01 num-stars        pic 9(2).

01 space-line       pic x(21) value all spaces.
01 star-line        pic x(21) value all "*".

procedure division.
main.
    compute half-width = (max-width - 1) / 2

    perform varying row from 0 by 1 until row = max-width
        perform compute-line
        perform render-line
    end-perform

    stop run.

compute-line.
    compute num-spaces = function abs(row - half-width)
    compute num-stars  = max-width - (2 * num-spaces).

render-line.
    display space-line(1:num-spaces) with no advancing
    display star-line(1:num-stars).

Baklava in COBOL was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.