自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ZXL工作室

为API生,为框架死,为debug奋斗一辈子,吃符号亏,上大小写的当,最后死在需求上

  • 博客(14)
  • 资源 (39)
  • 收藏
  • 关注

原创 C# windows frist 窗体程序

c#简单的船体程序 输入字符到textbox中 请过处理显示到label中using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;

2012-10-31 20:16:36 742

原创 c# 类型转换

字符型 转换成 数值整形using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[]

2012-10-31 20:13:32 730

原创 C# 控制台求圆的面积和周长

c#的简单运算using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { //定义常量pi public const

2012-10-31 20:11:22 9352

原创 vb.net 交错 处理 一年中的月份天数的输出

处理一年中的月份天数的输出知识点 :数组+交错 Module Module1 Sub Main() Dim calendars()() As Double = New Double(11)() {} Dim month As Integer Dim days As Integer Dim dayV

2012-10-31 11:04:06 1461

原创 vb.net 枚举类型

定义枚举类型 :Enum 类型名称 成员名=表达式(常量)End Enum 创建一个一星期的 枚举类型 : Module Module1 Enum days sunday = 0 monday = 1 yuesday = 2 wednesday = 3 thursda

2012-10-31 10:57:51 7808

转载 程序员不容易程序员不简单,程序员笑话你懂得

1“咚咚咚”“谁?”过了很久……“Java”     2换一个电灯泡需要几个程序员?一个也不要,这是硬件问题。     3一个计算机系学生坐在树下学习,又有一个计算机系学生骑着一辆很炫的自行车经过。前一个学生问道:“你的车从哪儿弄来的?”骑车的回答说:“我在外面学习的时候,一个漂亮的MM骑着车过来,她脱光了所有的衣服对我说,‘你想要什么我都给你’。”“明智的选择!你穿她的衣服肯定不

2012-10-25 20:35:14 1654

原创 vb.net ---- 学生考试成绩统计生成系统.txt

学生成绩考核 统计系统vb.net 输入 学生 考号:姓名:班级:成绩:插入到文本存储库中 读取文本中的信息 搜索固定信息 显示 Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button

2012-10-24 20:13:01 2521

原创 vb.net ---- n*n随机矩阵转换

n*n矩阵  以对角线实现矩阵转换 Public Class Form1 Dim a(4, 4) As Integer Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim i, j, t

2012-10-24 17:36:31 2170

原创 java ---- 定义一个表示学生的类 包括域“学号”、“班号”、“姓名”、“年龄”;

1.编写一个JAVA类程序片段,定义一个表示学生的类student,包括域“学号”、“班号”、“姓名”、“年龄”;方法“获得学号”、“获得班号”、“获得性别”、“获得姓名”、“获得年龄”、“修改年龄” 2.在上一道题的基础上编写Java Application程序创建student类的对象////第一题//public class Student { privat

2012-10-19 20:24:26 48235 3

原创 c++ 输m个数 求最大值最小值!

求 最大值和最小值 max 和 min编译环境 vs2010 通过数组求 排列 求值! #include#define maxsize 4using namespace std;int main(){ int i,j,t,a[maxsize]; t=0; for(i=0 ;i<4;i++){ cin>>a[i]; } for(i=0;i<4;i++){ for(j

2012-10-09 20:59:47 7692

原创 c语言 输出所有小于n(n>=2正整数)的素数

质数又称素数。指在一个大于1的自然数中,除了1和此整数自身外,不能被其他自然数整除的数。设计一个程序,输入n并输出所有小于n(n>2正整数)的素数。要求:素数每10个一行输出. #include#includeint prime(int x){ int i; for(i=2;i<=(int)sqrt(x);i++) if(x%i==0) return 0; re

2012-10-09 20:29:08 14562 1

原创 vb.net structure结构类型

编写一个记录学生信息和学习成绩的程序学号(num)、姓名(name)、性别(sex)、年龄(age)、住址(address)、学习成绩(mark)学习成绩分为5们 分数分别为95,90,112,94,90 Module Module1 Public Structure student Dim num As Integer Dim name

2012-10-05 13:18:12 9331

原创 VB.net & java ---- 百元买百鸡题目

百元买百鸡: 设 花一百元买鸡  公鸡:5元  母鸡:3元  小鸡1元3只求买鸡的方案 java代码: import java.util.*;public class helloworld { public static void main(String[] args) { int count=0; for(int i=0;i<20;i++){ for(i

2012-10-03 20:47:15 2700

原创 java ---- 数学函数Math和随机产生数值Random

计算数学函数 Math 中的sin cos log 等数学方法 以及Random随机数的生成 import java.util.Random;public class Elapsed { public static void main(String args[]) { double d=0; Random random=new Random(); //Math类的使用

2012-10-03 20:36:46 1775

Move位图资源

MoveCat.zip

2013-08-30

java 库 控制excel 的包 JXL

java 库 控制excel 的包 JXL

2013-08-30

OpenCV的PCA人脸识别

OpenCV的PCA人脸识别

2013-08-19

haarcascade_eye.xml

haarcascade_eye.xml

2013-08-18

opencv 测试文件

opencv 测试文件

2013-08-18

haarcascade_frontalface_alt2.xml

haarcascade_frontalface_alt2.xml

2013-08-13

操作系统 翟一鸣

计算机操作系统 翟一鸣 清华大学后题答案.rar

2013-07-04

不规则窗体

wpf不规则窗体

2013-06-22

c# wifi程序源代码

c# 实现的 wifi程序源代码 c# 实现的 wifi程序源代码

2013-06-02

c++生成服务器

c++生成服务器

2013-06-01

vba求最小公倍数

vba求最小公倍数

2013-05-20

swt.jar包资源

swt.jar包资源

2013-05-15

JSONLibraries1.zip

commons-lang.jar commons-beanutils.jar commons-collections.jar commons-logging.jar ezmorph.jar json-lib-2.2.2-jdk15.jar

2013-05-13

Ubuntu命令

Ubuntu的系统命令 终端操作!

2013-05-13

GridView导出Excel研究

GridView导出Excel研究

2013-05-09

Win7 64 位 配置Android

Win7 64 位 配置Android

2013-05-06

VBSCRIP5教程

VBSCRIP5教程

2013-05-05

delphi-project1.rar

delphi批量复制

2013-05-03

vb6.0 编写 浏览器代码

vb 开发的 浏览器代码 调用windows 内部的intent 空间 实现

2012-09-11

vm虚拟器 安装mac os

在vm虚拟机中 安装mac os系统 需要的硬件支持 cpu 双核以上 内存 2g 以上 硬盘 分割给mac os 40G 剩余自行分配

2012-09-11

sqlserver to mysql

数据库转换工具

2014-03-13

jquery uI TABLE

jquery ui table.zip

2013-12-28

json jar .rar

json jar .rar

2013-12-27

validators

validators

2013-12-23

hibernate-3.2.5.ga.zip

hibernate-3.2.5.ga.zip

2013-12-18

spring-framework & commons-logging

spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging spring-framework & commons-logging

2013-12-07

Spring DEMO.rar

Spring DEMO.rar

2013-12-07

google-gson-2.2.4-release.zip

google-gson-2.2.4-release.zip

2013-12-06

jquery.validate.js

jquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.jsjquery.validate.js

2013-12-06

jsp 登陆等待

jsp 登陆等待

2013-12-02

web页面字体设置

web页面字体设置

2013-12-02

jsp for struts2 and spring.rar

jsp for struts2 and spring.rar

2013-12-02

struts2 jar包 包含 标签

struts2 jar包 包含 标签

2013-11-29

struts2.3.1.1.rar

struts2.3.1.1.rar

2013-11-24

c# base xml.rar

c# base xml

2013-11-14

jQuery JavaScript Library v1.4.2

jQuery JavaScript Library v1.4.2

2013-11-11

jquery.min.js

jquery.min.js

2013-10-16

Verification+Code.c

Verification+Code.c

2013-08-30

程序员表白程序.zip

程序员表白程序.zip

2013-08-30

空空如也

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

TA关注的人

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