摘要:
--SQL sever语言 数据库 函数--声明变量declare @a varchar(20) set @a = 'svdaj'--或 select @a = 'svdaj'print @a --或select @a--内置全局变量select @@SERVERNAME, @@version ,... 阅读全文
摘要:
结构化查询语言(Structured Query Language)简称SQL(发音:/ˈes kjuː ˈel/ "S-Q-L"),是一种特殊目的的编程语言,是一种数据库查询和程序设计语言,用于存取数据以及查询、更新和管理关系数据库系统;同时也是数据库脚本文件的扩展名。结构化查询语言是高级的非过程... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace _99{ class Program { s... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _99{ class Program { static void Main(string[... 阅读全文
摘要:
static void Main(string[] args) { int[] a = new int[8] { 9, 13, 24, 38, 23, 2, 43, 46 }; for (int i = 1; i <= a.... 阅读全文
摘要:
try{Consloe.Write("请输入您的生日");string s=Consloe.Readline();DateTime bd=Covnert.ToDateTime(s);DateTime td=DateTime.Today;if(bd>td){TimeSpan Ts1=bd-td;Con... 阅读全文
摘要:
语句:1声明语句:入新的变量或常量。变量声明可以选择为变量赋值。在常量声明中必须赋值。 例如:int i=0;//声明变量i并赋值,也可以不赋值。 doubl d; "//"表示注释一行,“/*...*/”可以注释一段区域,注释后的内容变绿。2表达式语句:用于计算值的表达式语句必须在变量中存储该值例... 阅读全文
摘要:
运算符:算术运算符 ++ -- * / % + - 关系运算符 >= <=== != 逻辑运算符 逻辑与 &&(短路) &单方 逻辑或 ll (短路) l单方 逻辑非 ! 赋值运算符 = += -= *== /= %= 条件运算符?: () 要做就选自己能的第一的事业! 阅读全文
摘要:
一,数据类型 基本数据类型(值类型) 整型:1有符号(带负号) (1)int(32位)赋值形式: int _Int=+1或-1;(2)long(64位) 2无符号(0和正数)(1)ulong(64位)(2)uint(32位) 浮点型: 1 float(32位) 赋值形式:float _Float=1... 阅读全文