How to resolve the algorithm Write language name in 3D ASCII step by step in the PureBasic programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Write language name in 3D ASCII step by step in the PureBasic programming language

Table of Contents

Problem Statement

Write/display a language's name in 3D ASCII.

(We can leave the definition of "3D ASCII" fuzzy, so long as the result is interesting or amusing, not a cheap hack to satisfy the task.)

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Write language name in 3D ASCII step by step in the PureBasic programming language

Source code in the purebasic programming language

If OpenConsole()
  PrintN("   ////\                           ////\                   ////|          ") 
  PrintN("  ////  \                     __  ////  \      __         |XX|_/          ") 
  PrintN(" //// /| |   ////\   ////\////  |//// /| | ////  |  ////\          ////\  ") 
  PrintN("|XX| |X| ////\X| ////\// //// /||XX| |X| |//// /|| //// _| ////\  ////  \ ") 
  PrintN("|XX| |X||XX| |X||XX| |/ |XX| |X||XX| |/ /|XX| |X||//// /  |XX| | //// /\ |") 
  PrintN("|XX| |/ |XX| |X||XX|   /|XX| |//|XX|    \|XX|/// |XX| |/\ |XX| ||XX| |XX\|") 
  PrintN("|XX|   /|XX| |X||XX|  / |XX|  //|XX|  /| |////   |XX|    ||XX| ||XX| |    ") 
  PrintN("|$$|  / |$$| |&||$$| |  |$$| |&||$$| |&| |$$|  /||\\\\/| ||$$| ||$$| |///|") 
  PrintN("|%%| |  |%%| |i||%%| |  |%%| |/ |%%| |i| |%%| |i||  |%%| ||%%| ||%%| |// |") 
  PrintN("|ii| |  |ii| |/ |ii| |  |ii|   /|ii| |/ /|ii| \/|/  |ii| /|ii| ||ii| |/ / ") 
  PrintN("|::| |   \\\\  /|::| |  |::|  / |::|   / |::|  /   //// / |::| | \\\\  /  ") 
  PrintN("|..| |    \\\\/ |..|/    \\\\/  |..|  /   \\\\/   \\\\ /  |..|/   \\\\/   ") 
  PrintN(" \\\\|                           \\\\/                                    ") 
  
  Print(#CRLF$ + #CRLF$ + "Press ENTER to exit"): Input()
  CloseConsole()
EndIf

  

You may also check:How to resolve the algorithm Matrix digital rain step by step in the JavaScript programming language
You may also check:How to resolve the algorithm Literals/String step by step in the M2000 Interpreter programming language
You may also check:How to resolve the algorithm Range expansion step by step in the Liberty BASIC programming language
You may also check:How to resolve the algorithm Sieve of Eratosthenes step by step in the Fōrmulæ programming language
You may also check:How to resolve the algorithm Guess the number step by step in the Ursa programming language