Fix Compound Assignment Challenges

This commit updates the Compound assignment challenges:

* Compound Assignment With +=
* Compound Assignment With -=
* Compound Assignment With *=
* Compound Assignment With \=

to

* Compound Assignment With Augmented Addition
* Compound Assignment With Augmented Substraction
* Compound Assignment With Augmented Multiplication
* Compound Assignment With Augmented Division

Tested locally
pull/18182/head
Mrugesh Mohapatra 2016-03-27 13:49:45 +05:30
parent f728226bf4
commit a5f6b98df2
1 changed files with 4 additions and 4 deletions

View File

@ -651,7 +651,7 @@
},
{
"id": "56533eb9ac21ba0edf2244af",
"title": "Compound Assignment With +=",
"title": "Compound Assignment With Augmented Addition",
"description": [
"In programming, it is common to use assignments to modify the contents of a variable. Remember that everything to the right of the equals sign is evaluated first, so we can say:",
"<code>myVar = myVar + 5;</code>",
@ -702,7 +702,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b0",
"title": "Compound Assignment With -=",
"title": "Compound Assignment With Augmented Subtraction",
"description": [
"Like the <code>+=</code> operator, <code>-=</code> subtracts a number from a variable.",
"<code>myVar = myVar - 5;</code>",
@ -752,7 +752,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b1",
"title": "Compound Assignment With *=",
"title": "Compound Assignment With Augmented Multiplication",
"description": [
"The <code>*=</code> operator multiplies a variable by a number.",
"<code>myVar = myVar * 5;</code>",
@ -802,7 +802,7 @@
},
{
"id": "56533eb9ac21ba0edf2244b2",
"title": "Compound Assignment With /=",
"title": "Compound Assignment With Augmented Division",
"description": [
"The <code>/=</code> operator divides a variable by another number.",
"<code>myVar = myVar / 5;</code>",