10 2021 档案
摘要:create table Student( ID int identity(1,1) not null, Name nvarchar(50) not null, Age int not null, ChineseScores int null,--语文成绩 MathScores int null,-
阅读全文
摘要:1 就是一行代码的事情,代表了一个逻辑。一个逻辑的理解。 赋值变量u,等于1. 循环条件 变量小于9, 变量自增。 自增到大于9时,停止循环。程序结束。 for(int u=1;u<9;u++) { Console.WriteLine("for循环练习程序{0}",u); } 效果:
阅读全文
摘要:#region for循环 for(int i =0; i<10;i++) { Console.WriteLine("for循环基础语法程序{0}",i); } #endregion 效果;
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi
阅读全文
摘要:using System; using System.Linq; namespace ConsoleIf { class Program { static void Main(string[] args) { // Console.WriteLine("Hello World!"); // 1 需求
阅读全文
摘要:-- 创建角色表 create table Sys_Role( ID int identity(1,1), Name nvarchar(20) not null, SortValue int not null, ActionType varchar(200) null, IsSys bit not
阅读全文
摘要:您会写程序了,就要干这行的了!真的,相对没有那么难写的了。 不过,基础程序还是要多写,然后还是前后端的连接起来去写的。 因为您想要有上海表哥的现实节奏,如何才能有? 只能是人家独立做的节奏,独立业务的积累,才有的将来。否则将来如何来? 来了也不过,可能最多就是一个普通打工人而已,真的,非常现实的事情
阅读全文
摘要:扩展训练: 1 同样的程序,可以用继承的方式去写这个代码,用继承的方式,如何写出来 this 代码? #region 变量程序练习 买票排号程序 string name; // 乘客姓名 int age;// 年龄的变量定义 int price;// 票价 string sex;//性别 strin
阅读全文