摘要: C++ 基础语言: /* 多行注释 */ //单行注释 1.程序开始 #include <iostream> using namespace std; int main() cout << "Hello, world!" << endl; return 0; } 2.C++ 完全支持面向对象的程序设 阅读全文
posted @ 2020-01-16 15:54 _萧朗 阅读(431) 评论(0) 推荐(0) 编辑
摘要: CSS基础: 1./* */ 注释 2.#para1{} <p id="para1"> </p> 3.p.center{} <p class="center"> </p> /*仅限p有效*/ .center{} <p class="center"> </p> 1.CSS 背景属性 backgroun 阅读全文
posted @ 2020-01-15 14:33 _萧朗 阅读(200) 评论(0) 推荐(0) 编辑
摘要: HTML语言基础: <!--要注释的内容 --> 注释 <!DOCTYPE> 声明html文档 <h1--h6> 标题声明 <p> 文字编辑 <b> 文字加粗 </b> </p> <ul> 文字编辑 <b> 文字加粗 </b> </p> <a herf="http://www....."> 页面连接 阅读全文
posted @ 2020-01-13 15:51 _萧朗 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 1.变量定义: num = 2+2 num = "2"+2 num = "2"+"2" str = "string"..'string' str = [[ string ]] 2.定义表格: tab = {k="kk",v="vv"} tab = {k="kk","vv"} tab = {"kk". 阅读全文
posted @ 2020-01-10 14:54 _萧朗 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h> //头文件.h printf("%d 的阶乘为 %f\n", i, factorial(i)); 当上面的代码被编译和执行时,它会产生下列结果: 15 的阶乘为 1307674368000.000000 int main( ) { printf( "hell 阅读全文
posted @ 2020-01-09 10:37 _萧朗 阅读(239) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic; namespace Microsoft.Xna.User.GraphicsDeviceUserControl{ public class FilesNameSort : IComparer<string> 阅读全文
posted @ 2020-01-02 16:41 _萧朗 阅读(423) 评论(0) 推荐(0) 编辑
摘要: C#调用Server_SQL: SqlCommand:数据库命令行语句 //数据库路径 static string GetConnectString() { return "data source=192.168.0.96;initial catalog=haha;user id=sa;pwd=zh 阅读全文
posted @ 2019-09-23 17:44 _萧朗 阅读(475) 评论(0) 推荐(0) 编辑
摘要: SQL 关键字 CREATE DATABASE - 创建新数据库ALTER DATABASE - 修改数据库CREATE TABLE - 创建新表ALTER TABLE - 变更(改变)数据库表DROP TABLE - 删除表CREATE INDEX - 创建索引(搜索键)DROP INDEX - 阅读全文
posted @ 2019-09-23 15:40 _萧朗 阅读(107) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi 阅读全文
posted @ 2019-06-20 16:58 _萧朗 阅读(211) 评论(0) 推荐(0) 编辑
摘要: //场景初始化函数public StartScene(){ this.KeyDown += ModelViewerControl_KeyDown; his.KeyUp += ModelViewerControl_KeyUp;} bool alt_key_flag = false; bool shif 阅读全文
posted @ 2019-06-12 16:07 _萧朗 阅读(405) 评论(0) 推荐(0) 编辑