摘要: if-else语句:if是如果的意思,else是其他情况的意思 代码: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks 阅读全文
posted @ 2020-06-04 18:08 进一步海阔天空 阅读(286) 评论(0) 推荐(0)
摘要: 运算符有以下几种: 算数运行符:+ — * %(取余) 关系运算符:> >= < <= ==(等于) !=(不等于) 逻辑运算符:&&(与) ||(或) !取反(非) 赋值运算符:=(赋值) 逻辑运算符:&&(与):当两个条件都为true才会true,否则都为false ||(或):当两个条件都为f 阅读全文
posted @ 2020-06-04 13:54 进一步海阔天空 阅读(164) 评论(0) 推荐(0)
摘要: 1--pascal 帕斯卡命名法:第一个单词首字母大写,在类,方法,属性 2--camel 驼峰命名法:第一个单词首字母小写,变量,参数 3--c#命名规则: (1)只能用下划线,字母,数字无线组成,(2)不可以使用保留字 (3)见名知意 using System; using System.Col 阅读全文
posted @ 2020-06-04 13:42 进一步海阔天空 阅读(123) 评论(0) 推荐(0)