Click the Windows Start button. Type Notepad. Click the Notepad icon.

Batch (BAT): - . bat HTML: - . html CSS: - . css Java: - . java Python - . py Ruby: . rb. C: - . c C++ - . cpp C#: - . cs

Click File. Click Save as. Use the drop-down menu next to “Save as type:” to select All Files(*. *). Type a name for the program or file next to “File name. " Add the correct file extension at the end fo the file name (including the period). Click Save.

@echo off - This removes all unnessessary text that can interfere with your program. This should always be the first command you enter. echo - This command displays whatever text is written after it in the Command Prompt (i. g. “echo Hello World” would display “Hello World” as a line of text in the Command Prompt. ). echo.

  • The “echo. " command (with a period at the end) displays a blank line in the Command Prompt. This is useful to isolate lines of text and make them not look cluttered. pause - This command displays the prompt “Press any key to continue. . . " in the Command Prompt. This is used to create a break in your program. You can use this to allow the user time to read text in your program. cls - This command stands for “clear screen. " It clears all text from the screen. title - This command displays whatever text that follows in the title bar of the Command Prompt. color - This command allows you to change the color of the text in the Command Prompt by entering a corresponding letter or number after the command. You can see which letters and numbers corrispond to each color by typing “color/?” in the Command Prompt. exit - This command exits the program.

@echo off color 0e title Guessing Game by seJma set /a guessnum=0 set /a answer=%RANDOM% set variable1=surf33 echo ————————————————- echo Welcome to the Guessing Game! echo. echo Try and Guess my Number! echo ————————————————- echo. :top echo. set /p guess= echo. if %guess% GTR %answer% ECHO Lower! if %guess% LSS %answer% ECHO Higher! if %guess%==%answer% GOTO EQUAL set /a guessnum=%guessnum% +1 if %guess%==%variable1% ECHO Found the backdoor hey?, the answer is: %answer% goto top :equal echo Congratulations, You guessed right!!! echo. echo It took you %guessnum% guesses. echo. pause

Click File. Click Save as. Use the drop-down menu next to “Save as type:” to select All Files(*. *). Type a name for the program or file next to “File name. " Type “. bat” after the file name. Click Save.

For example: to create a page with the heading “Hello!”, you would type “

Hello!

” into Notepad.

For example, you would type

How are you today?

into Notepad to display the phrase “How are you today?” below the heading.

HTML is one of the easiest programming languages to learn. If you want to learn more about HTML, it is recommended you do some further reading onlne.

Hello!

How are you today?

Click File. Click Save as. Use the drop-down menu next to “Save as type:” to select All Files(*. *). Type a name for the file or file next to “File name. " Type “. html” after the file name. Click Save.

If you want, you can replace “Hello World!” with any other text you want.

print(“Hello!”)

Click File. Click Save as. Use the drop-down menu next to “Save as type:” to select All Files(*. *). Type a name for the program or file next to “File name. " Type “. py” after the file name. Click Save.

Click the Windows Start icon. Type CMD Click the Command Prompt icon.

Navigate to the Python file in File Explorer. Right-click the folder name in the address bar at the top. Click Copy Address. Type cd in the Command Prompt (if it is located in a different drive location, such as a D: drive, you will need to type “D:” and press Enter to change to that drive location). Press Ctrl + V to paste the folder address. Press Enter

//Hello World #include int main () { std::cout « “Hello World!”; }

Click File. {“smallUrl”:“https://www. wikihow. com/images/thumb/a/a4/911936-43-2. jpg/v4-460px-911936-43-2. jpg”,“bigUrl”:”/images/thumb/a/a4/911936-43-2. jpg/aid911936-v4-728px-911936-43-2. jpg”,“smallWidth”:460,“smallHeight”:345,“bigWidth”:728,“bigHeight”:546,“licensing”:"<div class="mw-parser-output">

Image by: Uploader
\nLicense: <a target="_blank" rel="nofollow noreferrer noopener" class="external text" href="https://creativecommons. org/licenses/by/3. 0/">Creative Commons</a>\n</p></div>”} Click Save as. Use the drop-down menu next to “Save as type:” to select All Files(*. *). Type a name for the program or file next to “File name. " Type “. cpp” after the file name. Click Save.