最贊回答 / Q_秋刀魚的滋味
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? int score = 96;//分數? ? ? ? ? ? if (score > 95)//判斷? ? ? ? ? ? {//分支1? ? ? ? ? ? ? ? Console...
2016-07-19
最贊回答 / qq_子煜_03381128
text 只是個變量名稱,你可以隨意去改變它,比如你換成錯誤的單詞,texx,它照樣還是能運行,因為text的英文意思是文本,所以大家用這個表達。 不用太糾結那些名稱, ?咱主要是學套路。
2016-07-17
最贊回答 / 慢走
if(){//if()里面為真,執行if語句,,否則執行else里面的語句//大括號是為了表明if里面有哪些語句//if下面只有一條命令,就可以不用大括號}else{}
2016-07-16
最新回答 / Mxayrting
using System;using System.Collections.Generic;using System.Text;namespace Test{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? int score = 94;//分數? ? ? ? ? ? if(score>95)//判斷? ? ? ? ? ? ? ? {//分支1? ? ? ? ? ? ? ? ? ? Co...
2016-07-15