How to resolve the algorithm Mad Libs step by step in the Aime programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Mad Libs step by step in the Aime programming language

Table of Contents

Problem Statement

Mad Libs is a phrasal template word game where one player prompts another for a list of words to substitute for blanks in a story, usually with funny results.

Write a program to create a Mad Libs like story. The program should read an arbitrary multiline story from input. The story will be terminated with a blank line. Then, find each replacement to be made within the story, ask the user for a word to replace it with, and make all the replacements. Stop when there are none left and print the final story.

The input should be an arbitrary story in the form: Given this example, it should then ask for a name, a he or she and a noun ( gets replaced both times with the same value).

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Mad Libs step by step in the Aime programming language

Source code in the aime programming language

file f;
data b;
list l;
record r;

f.stdin;

o_text("Enter the blank line terminated story:\n");

while (0 < f.b_line(b)) {
    l.append(b);
}

for (, b in l) {
    integer p, q;
    text s, t;

    while ((p = b.place('<')) ^ -1) {
        q = b.probe(p, '>');
        if (q ^ -1) {
            s = bq_string(b, p + 1, q - 1);
            b.erase(p, q);
            if (!r.key(s)) {
                o_("Replacement for `", s, "':\n");
                f.line(t);
                r.put(s, t);
            }
            b.paste(p, r[s]);
        }
    }
}

l.ucall(o_, 0, "\n");

  

You may also check:How to resolve the algorithm Loops/For step by step in the Delphi programming language
You may also check:How to resolve the algorithm Detect division by zero step by step in the Visual Basic .NET programming language
You may also check:How to resolve the algorithm Executable library step by step in the REXX programming language
You may also check:How to resolve the algorithm String case step by step in the Julia programming language
You may also check:How to resolve the algorithm Least common multiple step by step in the Pascal programming language