自定义博客皮肤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奋斗一辈子,吃符号亏,上大小写的当,最后死在需求上

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

原创 vb.net 计算8位二进制数(包括符号位)的 原码反码补码

vb 控制台程序通过输入带符号位的8位二进制数计算 原码 反码 补码写的方法 可能有些麻烦 但是能得到 理论上的效果 !如果有高手知道什么好方法希望给我邮件共享一下[email protected] Module Module1 Sub Main() Dim i, j, a, b, c, d, e, f, g, h, k, m As

2012-09-29 18:21:50 3804

原创 win7配置 android 开发以及环境变量的配置

做android开发时 所用到的应用软件有:eclipse    java    ADT      android SDK (目前国内网络更新SDK 比较慢 最好在网上搜寻一下 离线版的这样方便!)1.安装 java (JDK)2.安装eclipse3.安装ADT4.配置环境变量5.配置eclipse 在本教程中  为了方便配置环境变量 我给出了一条指定

2012-09-22 11:56:06 1022

原创 vb.net vb控制台 九九乘法

通过vb控制台 输出九九乘法表 Module Module1 Sub Main() Dim i, j, temp As Short For i = 1 To 15 Console.Write(" ") Next Console.WriteLine("九九乘法表") Conso

2012-09-22 09:37:13 1485 1

原创 java ---- image单图片输出 和 动画输出

java Applet  图片&动画 窗口 输出图片:import java.applet.Applet;import java.awt.Graphics;import java.awt.Image;public class image extends Applet{ Image maImage; public void init(){ maImage = getImag

2012-09-18 22:13:52 1783

原创 java ---- Applet 计算第n个斐波那契序列数!

通过java Applet输出第n个斐波那契序列数!编译工具eclipse +jdkimport java.applet.Applet;import java.awt.Button;import java.awt.Graphics;import java.awt.Label;import java.awt.TextField;import java.awt.event.Actio

2012-09-18 21:09:11 2372

原创 java ---- 给输入的字符数字 添加密码状态(变成“*”)

java Applet小程序 给输入的字符串 或 数字 隐藏起来处于加密状态显示“*”列入输入123 经过隐藏 显示出“***”import java.applet.Applet;import java.awt.Button;import java.awt.TextField;import java.awt.event.ActionEvent;import java.awt.eve

2012-09-18 20:33:34 4957

原创 vc++ 十进制数变二进制数的两种写法

这里分别用了两种方法:一种是数组变换实现一种是运用递归函数实现 #include using namespace std;/* 数组计算十进制变二级制int main(){ int i=0,n,a[50]; cin>>n; while(n>0){ a[i]=n%2; n=n/2; i++; } for(int j=i-1;j>=0;j--){ cout<

2012-09-18 19:49:43 2287

原创 java ----Applet两位整数运算(书上的案例 觉的挺好 发上来和大家分享一下)

java Applet的"+" "-" "*" "/" "%"的运算import java.applet.Applet;import java.awt.Button;import java.awt.Graphics;import java.awt.Label;import java.awt.TextField;import java.awt.event.ActionEvent;im

2012-09-17 21:13:36 830

原创 java ---- welcome to java Applet

java 图形化程序Applet  ---- welcome to javaimport java.applet.Applet;import java.awt.Graphics;import java.awt.Label;import java.awt.TextField;import java.awt.event.ActionEvent;import java.awt.event.

2012-09-17 20:50:00 883

原创 java ---- 初学扎到 hello world!

通过两种形式 写出一个经典的例子helloworld!编译工具eclipse + jdk  java  互交式程序(控制台)&& 窗体程序 !一.public class helloworld { public static void main(String[] arge) { System.out.print("hello world!"); }}方法一直接在控制台中输

2012-09-17 20:24:10 1388 2

原创 vb.net控制台 random类 随机字符,随机数 (生成4个随机3位数倒序输出)

编译环境vb.net vb控制台应用程序 题目要求:随机生成一定范围的字符随机生成一定范围的数字查找输出一段字符串第n个位置后的m位字符(字符串长度不能低于n+m)随机生成3位数 输出时同时倒序输出    例如:随机输出(D~W)之间的字符随机输出(120~360)之间的数字查找HelloWorld!输出oWorl随机生成123,在程序输出时 应

2012-09-17 17:32:26 5178

原创 Java Application浮点数 --整数--小数--拆分

编写一个字符界面的Java Application程序。接受用户输入的一个浮点数,把它的整数部分和小数部分分别输出 import java.util.*;public class helloworld { public static void main(String[] args) { Scanner in; // 定义接受键盘输入 String msg, s; int

2012-09-16 20:57:20 3098

原创 vc++ 求两个数的最大公因数和最小公倍数

最大公约数!!! 最小公倍数!!! 通过控制台输出两个数的最大公约数和最小公倍数!!!  #include using namespace std;int Max(int x,int y){ int max,min,r; max=x>y?x:y; min=x<y?x:y; if(max%min==0){ return min; }}int Min

2012-09-16 01:18:15 1959

原创 c++ 判断第几天 源码(控制台)

#include "stdio.h"struct date {int y;int m;int d;};void main(){date da; int i,j, mon[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};printf("请输入日期(年 月 日):");scanf("%d %d %d"

2012-09-11 15:49:01 2881

原创 c++ 控制台菜单 制作

#include "stdio.h"#include "stdlib.h"#include "windows.h"void vMainMenu() //初始项{ printf("File(F1)\tEdit(F2)\tHelp(F3)\tExit(F4)\n"); } void vPrintFileMenuF1() //定义file菜单扩展选项{ system("cls"

2012-09-11 15:45:20 4316

原创 c++ 水仙花数

关于 水仙花数 的控制台程序源码 #include #include int main(){int i,j,k;for(i=0;i<10;i++) for(j=0;j<10;j++) for(k=1;k<10;k++) if(i*i*i+j*j*j+k*k*k == i+10*j+100*k) //i:是个位 //j:是十位 //k:是百位

2012-09-11 14:07:01 1556

原创 c语言 杨辉三角

用c语言的形式表示杨辉三角!system命令在c语言中的调用 需要引用 头文件#include #include int main(){ int a[10][10]; int i,j; for(i=1;i<10;i++){ a[i][1]=1; a[i][i]=1; } for(i=3;i<10;i++) for(j=2;j<i;j++) a[i][j]=

2012-09-10 13:44:38 1214

原创 c++ 我的第一个程序 hello world!

从我开始学习编程的那天开始 我就有一个信念:   一切伟大的行动和思想  都有一个微不足道的开始#include using namespace std;int main(){ cout<<"hello world!"<<endl; system("pause"); return 0;} 看似一个简单的程序 确实一个经典不变的例子! 有多少开发者 是从这里起步的!这一段简

2012-09-09 15:09:59 907

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关注的人

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