App下載

詞條

大約有 2,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0029秒)

281.JavaScript浮點(diǎn)數(shù)

```javascript var ourDecimal = 5.7; // Only change code below this line var myDecimal = 5.7; ```

http://www.o2fo.com/chun5060/chun5060-un75249t.html

282.JavaScript小數(shù)乘法運(yùn)算

```javascript var product = 2.0 * 2.5; ```

http://www.o2fo.com/chun5060/chun5060-l2cg249u.html

283.JavaScript小數(shù)的除法運(yùn)算

```javascript var quotient = 4.4 / 2.0; ```

http://www.o2fo.com/chun5060/chun5060-n1az249v.html

284.JavaScript取余運(yùn)算%

```javascript // Only change code below this line var remainder=11%3; ```

http://www.o2fo.com/chun5060/chun5060-zktc249w.html

285.JavaScript +=賦值操作

```javascript var a = 3; var b = 17; var c = 12; // Only modify code below this line a += 12; b += 9; c += 7; ```

http://www.o2fo.com/chun5060/chun5060-z26n249x.html

286.JavaScript -=賦值操作

```javascript var a = 11; var b = 9; var c = 3; // Only modify code below this line a -= 6; b -= 15; c -= 1; ```

http://www.o2fo.com/chun5060/chun5060-96sl249y.html

287.JavaScript *=賦值操作

```javascript var a = 5; var b = 12; var c = 4.6; // Only modify code below this line a *= 5; b *= 3; c *= 10; ```

http://www.o2fo.com/chun5060/chun5060-1wen249z.html

288.JavaScript /=賦值操作

```javascript var a = 48; var b = 108; var c = 33; // Only modify code below this line a /= 12; b /= 4; c /= 11; ```

http://www.o2fo.com/chun5060/chun5060-lj5t24a0.html

289.JavaScript 基本預(yù)算綜合練習(xí)

```javascript function convert(celsius) { // Only change code below this line var fahrenheit=celsius*9/5+32; // Only change code above this line return fahrenheit; } // Change the inputs below to test your code convert(30); ```

http://www.o2fo.com/chun5060/chun5060-o1fa24a1.html

290.JavaScript 聲明字符串變量

```javascript // 舉例 var firstName = "Alan"; var lastName = "Turing"; // Only change code below this line var myFirstName = "Alan"; var myLastName = "Turing"; ```

http://www.o2fo.com/chun5060/chun5060-sw8r24a2.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

281.JavaScript浮點(diǎn)數(shù)

```javascript var ourDecimal = 5.7; // Only change code below this line var myDecimal = 5.7; ```

http://www.o2fo.com/chun5060/chun5060-un75249t.html

282.JavaScript小數(shù)乘法運(yùn)算

```javascript var product = 2.0 * 2.5; ```

http://www.o2fo.com/chun5060/chun5060-l2cg249u.html

283.JavaScript小數(shù)的除法運(yùn)算

```javascript var quotient = 4.4 / 2.0; ```

http://www.o2fo.com/chun5060/chun5060-n1az249v.html

284.JavaScript取余運(yùn)算%

```javascript // Only change code below this line var remainder=11%3; ```

http://www.o2fo.com/chun5060/chun5060-zktc249w.html

285.JavaScript +=賦值操作

```javascript var a = 3; var b = 17; var c = 12; // Only modify code below this line a += 12; b += 9; c += 7; ```

http://www.o2fo.com/chun5060/chun5060-z26n249x.html

286.JavaScript -=賦值操作

```javascript var a = 11; var b = 9; var c = 3; // Only modify code below this line a -= 6; b -= 15; c -= 1; ```

http://www.o2fo.com/chun5060/chun5060-96sl249y.html

287.JavaScript *=賦值操作

```javascript var a = 5; var b = 12; var c = 4.6; // Only modify code below this line a *= 5; b *= 3; c *= 10; ```

http://www.o2fo.com/chun5060/chun5060-1wen249z.html

288.JavaScript /=賦值操作

```javascript var a = 48; var b = 108; var c = 33; // Only modify code below this line a /= 12; b /= 4; c /= 11; ```

http://www.o2fo.com/chun5060/chun5060-lj5t24a0.html

289.JavaScript 基本預(yù)算綜合練習(xí)

```javascript function convert(celsius) { // Only change code below this line var fahrenheit=celsius*9/5+32; // Only change code above this line return fahrenheit; } // Change the inputs below to test your code convert(30); ```

http://www.o2fo.com/chun5060/chun5060-o1fa24a1.html

290.JavaScript 聲明字符串變量

```javascript // 舉例 var firstName = "Alan"; var lastName = "Turing"; // Only change code below this line var myFirstName = "Alan"; var myLastName = "Turing"; ```

http://www.o2fo.com/chun5060/chun5060-sw8r24a2.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程