自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

♛ 走心。的专栏

从IT菜鸟到工程师。走的越远,就越知道:世界再大,总有牵挂。

  • 博客(7)
  • 资源 (5)
  • 收藏
  • 关注

原创 css语法--选择器

//html选择器 HTML选择器 p{color:red;font-weight:bold}//下列所有带p标记的都为这个样式 这是一个段落. //ID选择器--只能在文档中出现一次 ID选择器 #test{color:red;font-weight:bold}

2014-11-30 18:24:18 619

原创 验证学号相关问题(异常)

package studentNumberValidate;import java.util.Scanner;public class Test { /** * 输入学号必须以ytdx_开头 * 后四位必须为数字,并且前两位数字大于06小于等于当前年份 */ public static void main(String[] args) { StudentNumberV

2014-11-26 18:34:39 1481

原创 门禁系统

package com.handson.user;import java.util.Scanner;import com.handson.sys.Door;public class Guest { private String name; public Guest(){ } public Guest(String name){ this.name = name;

2014-11-19 18:07:49 995

原创 C#简易记事本

//简单版记事本,功能尚不完善,bug也有不少,继续完善中...using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using Syste

2014-11-13 20:28:33 1149 1

原创 广义表的实现

#include #include #include using namespace std;struct GLNode{ int tag;//节点类型标记 union { char data;//原子值 struct GLNode *sublist;//指向子表的指针 }val; struc

2014-11-11 15:50:33 885 1

原创 猜数字游戏

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namesp

2014-11-06 20:22:00 537

原创 关于存钱的继承接口实现

package Money;public abstract class Bank { private double year; private double rate = 0.035; private double money; public abstract double computerIncome(); public void setYear(double year) {

2014-11-04 22:01:17 616

code style.txt

as格式化code

2021-07-07

火星坐标转换器.zip

将火星坐标转换成需要的坐标

2021-07-07

ExcelReportAdapter.java

表格适配Adapter

2021-07-07

staxon-1.3.jar

xml转json

2021-07-07

ZXingCodeLibs.rar

Zxing识别

2021-07-07

空空如也

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

TA关注的人

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