Skip to main content

Storage

In order to operate with the data, we must previously reserve memory spaces in which to store it. These are what we call data storage structures.

These structures must be defined by:

  • Identifier: name that we give to the data during the program to refer to it.
  • Type: nature and range of values that can be stored (number, text, boolean...)
  • Value: specific content of the data at that moment.

In this introductory course we are going to learn about only two structures, variables and vectors (also called arrays), although we are only going to focus in depth on the first one.

Variables and constants

They are spaces that store a single DATA of a different nature, and to which a name that identifies it is associated. The type of data they can store are:

  • Numeric: they can be integers (int) or real (float), depending on whether or not they accept decimals, generally with Anglo-Saxon notation where the decimal is marked with a dot.
  • Characters (char): letters or typographic signs. They are defined by enclosing the character with a single quote.
  • Character strings (string): words or phrases. They are defined by enclosing the text with double quotes.
  • Logical (Boolean): Supports values of TRUE or FALSE.

Variables, as their name indicates, are data structures that will take different values throughout the execution of the program, while constants adopt the same value throughout the program (For example, the PI number, or the percentage of the VAT).

It is very important to properly select the name of the variables and constants so that they help understand the stored data. Generally, constants are defined with names in uppercase and variables in lowercase.

To learn more about how it works, we are going to create a small program that requests a price, an offer percentage, and based on a VAT percentage (Constant), shows a message with the total price to pay. We will call it the SALES CALCULATOR.

Steps 1 and 2: Analysis and flow chart of the Sales calculator program

The elements involved will be:

  • Start and end of program.
  • Outputs: Request original price and discount percentage, and show the final price.
  • Inputs: Original price, discount percentage 
  • Storage: original price (real number because it can be decimal), discount percentage (whole number because we will use the value as a percentage), final price (real number), VAT percentage (constant), and optionally the message to display (constant)
  • Processing: addition, multiplication and division.

The flowchart is:

image-1657550591499.png

Variables could also be assigned initial values, although they will be modified throughout the program. If this is not done,  0 or empty is assumed as the initial value.

Steps 3, 4 y 5: Coding, compilation and checking of the Sales Calculator Sales program with PSeInt

As we have seen in the Input section, PSeInt is a less "rigorous" program with the code, and it has allowed us to use variables without having previously defined them (as we did with num1 and num2, variables that stored the values of the numbers entered)

However, the ordinary procedure in any program is to previously define the variables (and constants) that we will need, by assigning an identifier and a type of data to be stored. In PSeInt this is done using the Definir command. When writing this instruction, the help asks us for the name of the variables we want to define, separated by commas.

image-1657559249851.png

We can also specify the type of data they will contain, adding the instruction como after the name, which will open the four options available in PSeInt: entero, real, carácter o lógico, also called boolean. In the case of character strings, it does not allow their definition as such, although we will see that through assignment we can store them in variables in the same way.


image-1657559396197.png

We carry out this process as many times as we need, based on the type of data that we have defined in the problem. In the case of constants, we will assign their value (21% in the case of VAT and the text of the message that we want)

To store a value in a variable or constant, use the Asignar command in the window on the right.

image-1657630542224.png

You can also type the minor sign and hyphen directly using the keyboard.

image-1657629506076.png

When we define variables and constants in the program, if we click on the tab on the left called Lista de variables, a window opens with the defined variables.

image-1657629840670.gif

Once the variables that will contain the necessary information have been defined, we will request and store the values of the initial price and the discount percentage.

image-1657630216896.png

Finally, we will operate with them using arithmetic operations (see next section) and we will assign the value obtained to the variable final_price, which will be the one that we will display in the console.

image-1657630645655.png

As can be seen in the last row of the program, the Escribir instruction allows the concatenation of different types of data simply by separating them between commas.

We will only have to check the correct working of the program by clicking Ejecutar. Due to the longer length of this program, it may be a good time to check how the Ejecutar paso a paso command works.

image-1657630951667.gif

EnIn elthe pasoerror dedebugging depuraciónand deprogram erroresverification ystep, verificaciónyou delcan programatry puedesintroducing probarpossible errors to see how the program would react: for example, entering decimals with a introducircomma, errores posibles, para ver cómo reaccionaría el programa: por ejemplo meter los decimales con una coma, o un porcentaje de descuento decimal. En programación es fundamental adelantarseor a equívocosdecimal odiscount posiblespercentage. confusionesIn deprogramming, lait personais usuaria,essential parato teneranticipate previstamistakes unaor respuestapossible queconfusion noon bloqueethe elpart programaof othe prevenirlasuser, medianteto mensajeshave dea aviso.
response planned that does not block the program or to prevent them through warning messages.

PasosSteps 3, 4 y 5: Codificación,Coding, compilacióncompilation yand verificaciónchecking delof programathe Sales Calculator program Calculadora de Rebajas conwith Scratch

EnIn Scratch, lasdata estructurasstorage destructures almacenamientoare delocated datosin se encuentran en el bloquethe Variables .block. DesdeFrom allíthere podremoswe crearcan tantascreate as many variables comoas necesitemos,we yneed, tambiénand asignarlesalso elassign valorthem deseadothe mediantedesired elvalue bloqueusing correspondiente.
the corresponding block.

image-1657631516502.pngimagen.png

Al

crear

When unacreating variablea lovariable, primerothe quefirst nosthing solicitait aparteasks deus sufor, identificadorapart esfrom saberits siidentifier, seis defineto comoknow if it is defined as local (only (solofor dethis estesprite) objeto)or o comoas global (common (comúnfor paraall todossprites). losIn objetos)this Encourse estewe cursoonly solodevelop desarrollamosprograms programasfor dethe unsame mismoobject, objetoso porit lodoesn´t que nos daría igual.matter.

image-1663515981704.pngimagen.png

Una

vez

Once definidasthe lasnecessary variables necesariashave pasaremosbeen adefined, crearwe elwill códigogo enon elto objetocreate utilizandothe code in the object using sensoressensing, looks, and the arithmetic and concatenation aparienciaoperators that ywe losneed, operadoresand aritméticoswhich ywe dewill concatenaciónsee quein necesitemos,more ydetail quein veremosthe connext mássection. detalleThe encode elin siguienteblocks apartado.would Ellook códigolike en bloques quedaría de la siguiente forma:this:


image-1657635736663.pngimagen.png

Pruébalo

aquí:

Check it here:

EstructurasComplex complejasdata destorage almacenamiento de datos
structures

AunqueAlthough noit esis objetonot dethe estesubject curso,of enthis programacióncourse, sein pueden almacenarprogramming conjuntosdata de datossets siemprecan quebe seanstored as long as they are of the delsame mismo tipotype enin otroother tipotypes deof estructurascomplex complejas,structures, losthe llamadosso-called arrays, quewhich enin españolSpanish seare traducentranslated comoas vectoresvectors oor matrices, yand enin PSeInt sethey denominanare called dimensionesdimensions.
 For more information on how to use dimensions in PSeInt you can consult the following video.

ParaFor másfurther informacióninformation sobreyou cómocan utilizarconsult dimensionesthe enfollowing PSeIntvideo se(in puede consultar el siguiente video.Spanish)

En Scratch soloonly secontemplates contemplathe lause utilización deof listaslists quethat seríanwould be ordered series ordenadasof dedata datosof delthe mismosame tipo,type, yand quethat seare encuentranavailable disponibleswithin dentrothe delsame mismo bloqueVariables Variablesblock.

image-1657636178529.pngimagen.png

{{@5685}}