Skip to main content

Code Rain with use Notepad

Step 1: Open your Notepad/Notepad ++

Step 2: Type this code in Notepad


Code:


@echo off

title code rain

mode 1000

color 0a

goto ti

cls

:ti

echo (type in what ever u like)

pause

cls

goto di

:di

echo %random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%

%random%%random%%random%%random%


Save as: code rain.bat

Comments

Post a Comment

Popular posts from this blog

Spoken Tutorial Linux Test answer

 1. we can use command "Alt + T" in the terminal in ubuntu environment? a) True  b) False 2.  Justify whether the commands given below are true or false .  a . $ > chmod -R 744 programming --- > This command is used to assign read , write , execute permission to owner and readonly for all others on programming folder .  b . $ > chown - R www - data : www - data --- > This command is used to change the ownership of all the folders and subfolders including files , under current directory to www - data user . a) True         b) False 3. We can use the commands $ > Is -1 | wc -1 > filecount.txt to check the count of number of files in a directory ? Select one a) True  b) False 4.  The following commands will help us identify the number of lines of code written in programcode.c file . $ > programcode.c | wc - a) True   b) False 5.  Identify whether the output of the following commands is tru...

Spoken Tutorial C test answer

1)    In the following statements, what does   6   specify?  int num[ 6 ];  num[ 6 ]=21; Select one: In the first statement,  6  specifies a particular element, whereas in the second statement it specifies an array size. In the first statement,  6  specifies a particular element, whereas in the second statement it specifies a type. In both the statements,  6  specifies an array size. In the first statement,  6  specifies an array size, whereas in the second statement it specifies a particular element of an array. 2)  What will be the   output   of the following program? #include<stdio.h>  int main()  {      char j=1;      while(j < 5)      {          printf("%d, ", j);          j = j+1;      }      printf("\...

Learn Python Biginners to Advance

How to Download Python For Laptop/PC search: python.org  in your chrome browser/ another browser  then download latest version of python for your pc/laptop. Then Install latest version of PYCHARM-- goto google chrome and search:Pycharm and click first link  https://youtu.be/MoeQlmeJnPg Note: If your PC is 32 bit Old Computer with 2gb RAM then install pycharm version 2018.2.7 For Android Open your play store then search: pydroid3 and click on install. Start Learning Python 1.How to find output in python Write any word in print("write text here")  same word you get in output. EXAMPLES: Code: