摘要:
平台名称:比赛现场打分管理平台 主要应用于文艺比赛、演讲比赛、才艺比赛展示、歌咏比赛、模特比赛、艺术考试、干部评议等需要评委现场打分的场合。 特点:由于专门的比赛打分器普通客户或者租用,或者买,但由于使用次数很少,专门配备不但成本高,而且现场调试麻烦.而平板电脑或手机现在已经很普及,只需在现场架设W 阅读全文
2023年6月17日 #
摘要:
using System; using System.Threading; using System.Threading.Tasks; namespace AsyncAwaitDemo { class Program { static void Main(string[] args) { Conso 阅读全文
2023年4月8日 #
摘要:
代码参考: use ddbb go DECLARE @PwNoLinkStr VARCHAR(1000) SELECT @PwNoLinkStr = ISNULL(@PwNoLinkStr+',','')+PwNo FROM DaFen; print @PwNoLinkStr 阅读全文
2023年4月6日 #
摘要:
代码参考: use Demo go select Name,ExamNode ,Course,avg(Num) from SumDemo group by Name,ExamNode,Course with cube order by Name desc,ExamNode desc,Course d 阅读全文
2023年4月4日 #
摘要:
学期号代码参考: USE [Demo] GO /****** Object: UserDefinedFunction [dbo].[GetTermSortNo] Script Date: 2023/4/4 14:50:57 ******/ SET ANSI_NULLS ON GO SET QUOTE 阅读全文
2023年1月3日 #
摘要:
代码参考1: using System; using System.Linq.Expressions; namespace ExpressionDemo { class People { public int Id { set; get; } public string Name { set; ge 阅读全文
2022年12月28日 #
摘要:
包括两个部分: 作业1:智能Excel的应用-比赛结果统计表 第一步: 观看老师的演示视频 http://media.dshow.net/excelTaskA-1.mp4 http://media.dshow.net/excelTaskA-2.mp4 第二步: 做出功能类似上方视频的的智能Ex 阅读全文
2022年12月19日 #
摘要:
代码参考: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsCircleArea. 阅读全文
2022年12月15日 #
摘要:
协变参考代码1: using System; using System.Collections.Generic; using System.Linq; namespace CovarianceSoOnDemo2 { public class Pet { protected bool _bPutOn; 阅读全文
2022年12月8日 #
摘要:
参考代码1: using System; namespace InterfaceDemo { /// <summary> /// 定义一个爬树接口 /// </summary> interface IClimbTree { void ClimbTree(); } /// <summary> /// 阅读全文
2022年12月2日 #
摘要:
参考代码1: using System;using System.Collections.Generic;using System.Linq;namespace FuncActionDemo{ class FuncActionTest { public void Test1(List<int> da 阅读全文