自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Gloria_m 的博客

深海中的追光者~

  • 博客(1)
  • 资源 (11)
  • 收藏
  • 关注

原创 001 Two Sum - leetcode

class Solution {public: vector<int> twoSum(vector<int>& nums, int target) { vector<int> v(2); for(int i = 0; i < nums.size(); i++){ for(int j ...

2019-12-31 09:07:05 837

2048-code.zip

eader> <h1>2048</h1> <a href="javascript:new_game();" id="new_game_button">New Game</a> <p>score: <span id="score">0</span> </p> </header> <div id="grid_container"> <div class="grid_cell" id="grid_cell_0_0"></div> <div class="grid_cell" id="grid_cell_0_1"></div> <div class="grid_cell" id="grid_cell_0_2"></div> <div class="grid_cell" id="grid_cell_0_3"></div>

2020-03-31

Baymax.html

<div id="head"> <div id="eye"></div> <div id="eye2"></div> <div id="mouth"></div> </div> <div id="torso"> <div id="heart"></div> </div> <div id="belly"> <div id="cover"></div> </div> <div id="left_arm"> <div id="l-bigfinger"></div> <div id="l-smallfinger"></div> </div> <div id="right-arm"> <div id="r-bigfinger"></div> <div id="r-smallfinger"></div> </div> <div id="left-leg"> </div>

2020-03-31

StudentMS.zip

学生管理系统的实现 * For student login: - username: 5 - password: 5 * For academician login: - username: 100 - password: 100

2020-03-31

高斯勒让德实现.cpp

int n; double x; //x的值可能是小数 cout<<"等分区间数为:"; cin>>n; cout<<n<<endl; cout<<"点数为:"; cin>>x; cout<<x<<endl; cout<<lerangde(n,x);

2020-03-31

龙贝格C++实现.cpp

double a,b,T1,T2,S,x,h; printf(" 请输入积分上限:"); scanf("%lf",&a); cout<<a; printf("\n 请输入积分下限:"); scanf("%lf",&b); cout<<b<<endl; h=b-a;

2020-03-31

复化梯形公式.cpp

复化梯形公式. cout<<"等分区间数为:"; cin>>N; cout<<N<<endl; cout<<"区间的范围为:"; cin>>a; cin>>b; cout<<a<<"-"<<b<<endl; devide(a,b,N); cout<<"积分值为:"<<getIntegralValue(a,b,N)<<endl; cout<<"是否继续?按y退出:";

2020-03-31

CSS基础-实验楼.md

#### 高级框操作 当你使用绝对的值设置了一个框的大小(如,固定像素的宽/高),允许的大小可能不适合放置内容,这种情况下内容会从盒子溢流。我们使用 overflow 属性来控制这种情况的发生。常用的值: - auto:当内容过多的时候溢流的内容被隐藏,然后出现滚动条,让我们滚动查看所有的内容。 - hidden: 当内容过多,溢流的内容被隐藏。 - visible: 当内容过多,溢流的内容被显示在盒子的外边。 #### CSS 框类型 display 属性有很多的属性值。这里着重讲三个常见的 :block, inline, 和 inline-block。 - 块级元素的特点:

2020-03-31

HTML基础-实验楼.md

#### 请求方法 #### 常见状态码 #### 浏览器的访问过程具体是什么呢? 1. 首先浏览器请求 DNS 服务器,通过 DNS 获取相应的域名对应的 IP。 2. 通过 IP 与目的主机建立 TCP 连接。

2020-03-31

PLsql语法.md

#### PLsql 是什么 - 是专用于Oracle服务器,在SQL基础之上,**添加了一些过程化控制语句,叫PLSQL** - 过程化包括有:类型定义,判断,循环,游标,异常或例外处理。。。 - **PLSQL强调过程** ![PLsql图片描述](https://segmentfault.com/img/remote/1460000013560863?w=1304&h=720) #### 为什么要用PLSQ - 因为SQL是第四代命令式语言,**无法显示处理过程化的业务,所以得用一个过程化程序设计语言来弥补SQL的不足之处**, - SQL和PLSQL不是替代关系,是弥补关系 ### PLsql 语法 declare和exception都是可以省略的,`begin和end;/`是不能省略的。 #### 显示PLsql执行结果 #### 变量 ##### number ##### varchar2 #### 属性类型 ##### %type ##### %rowtype ##### 何时使用%type,何时使用%rowtype? ### 条件判断 #### 基本语法 #### 小练习

2020-03-31

Linux 配置LEMP - UbuntuNginxPHPMySQL

傻瓜式Linux 配置LEMP - UbuntuNginxPHPMySQL配置教程+常见问题解决方法

2020-03-31

计算机组成原理(英)

“Those who cannot remember the past are condemned to repeat it” George Santayana, 1905 “The past is a foreign country; they do things differently there.” Harold Pinter “History repeats itself, first as tragedy, then as farce.” Karl Marx, Der 18te Brumaire des Louis Napoleon, 1852 “Everything that can be invented has been invented." Charles H. Duell, Commissioner, U.S. Office of Patents, 1899.

2019-02-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除