Que é variável?
|
A variável é o lugar para armazenar a parte de informação. Porque um pôde armazenar o número de telefone do amigo em própria memória, nós podemos armazenar esta informação na memória de computador. Estes são os meios de alcançar a memória de computador.
|
Há umas réguas razoavelmente estritas em como as variáveis são nomeadas que C++ impõe:
- Os nomes variáveis devem começar com a letra.
- Os nomes variáveis são caixa-sensíveis (isto é, o “myNumber variável” é diferente de “MYNUMBER” que o inturn é diferente do “mYnUmBeR”).
- Os nomes variáveis não podem ter espaços em branco in-between.
- Os nomes variáveis não podem ter os caráteres especiais.
|
Tipos variáveis
|
Variables are of three basic types which are as follows:
- int
- float
- char
|
Declarando as variáveis
|
O tipo variável não é nada mas uma descrição do tipo da informação que uma variável armazenará. Declarar a variável em C++ é simples. Deixar-nos dizer que nós queremos declarar a variável do tipo “myAge chamado interno”. Aquele é dizer, myAge variável armazenará o inteiro, myName variável armazenará um caráter, myHeight variável armazenará o valor do flutuador. Em C++, isto é escrito como mostrado abaixo:
|
int myAge;
char myName;
float myHeight;
|
|
Como datilografar a molde a variável?
|
Em C++ a carcaça é fácil. Deixar-nos dizer que nós usamos uma variável de flutuador que armazena o número como “26.3141885”, e nós queremos ter o interno armazenando uma parcela do inteiro em vez do flutuador. Isto é feito como mostrado abaixo:
|
int GetAverage()
{
// assume that regularAvg and specialAvg store two floats
float totalAvg = regularAvg + specialAvg;
// cast totalAvg to an int
int truncatedAvg = (int) totalAvg;
// return the truncated value
return truncatedAvg;
}
|
|
The key part to notice here is the line of code which reads int truncatedAvg = (int)
totalAvg. What we are doing here is taking the float, totalAverage, that stores some
kind of the decimal number (say 82.41832), and getting rid of ".41832" part by casting
it to the int. This works since int is the only capable of storing the integers, so it
simply stores an integer portion of the totalAvg.
|
|
|
Keywords Variables in CPP, cpp tutorial, functions cpp, cpp array, cpp c++, variables in c++,
php variables, cpp code, cpp example, cpp program, cpp function, variables in python,
array variables, sample cpp, algorithm cpp, variables in functions, function variables,
cpp dll, cpp h, variables in memory, lib cpp, cpp source, functions variables, visual cpp,
cpp library, variables in c#, variables in java
|