typo - update value of "a" to 100 (#27855)

This commit is contained in:
eliberator
2018-10-26 11:23:51 +02:00
committed by Tracey Bushman
parent b32c93347c
commit 18809dac08

View File

@ -36,7 +36,7 @@ Observe que o `else` e `else if` seções não forem necessárias, enquanto `if`
int main () { int main () {
// Local variable definition // Local variable definition
int a = 10; int a = 100;
// Check the boolean condition // Check the boolean condition
if(a < 5) { if(a < 5) {
@ -59,4 +59,4 @@ Observe que o `else` e `else if` seções não forem necessárias, enquanto `if`
-> a is not less than 5! -> a is not less than 5!
-> Value of a is : 100 -> Value of a is : 100
``` ```