上一页 1 ··· 6 7 8 9 10 11 12 下一页
  2014年11月20日
摘要: #includevoid main(){ int a[3]={1,3,5};//一维数组 int *num[3]={&a[0],&a[1],&a[2]};//指向数组长度为3的一维数组的指针数组 int **p;//指向指针的指针 int i; p=num;//把num的首地址传递给p,p存放的... 阅读全文
posted @ 2014-11-20 22:45 _noname 阅读(102) 评论(0) 推荐(0) 编辑
  2014年11月17日
摘要: //TX-1C实验板//芯片 STC89C52RC//晶振频率 11.0592MHz//=====一个LED灯闪#include#define uint unsigned intsbit led1=P1^0;void delay1s();void main(){ while(1) { led1... 阅读全文
posted @ 2014-11-17 17:01 _noname 阅读(350) 评论(0) 推荐(0) 编辑
  2014年10月16日
摘要: 1. 题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,... 阅读全文
posted @ 2014-10-16 23:58 _noname 阅读(97) 评论(0) 推荐(0) 编辑
  2014年10月15日
摘要: 1. 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? Source: #include void main() { inti,j,k; for(i=1;i<=4;i++) fo... 阅读全文
posted @ 2014-10-15 20:03 _noname 阅读(121) 评论(0) 推荐(0) 编辑
  2014年9月16日
摘要: >> I=imread('lena.bmp');>> I1=rgb2gray(I);>> imshow(I1),title('a');>> I2=I1(1:2:end,1:2:end);>> figure,imshow(I2),title('b');>> I3=I1(1:4:end,1:4:en... 阅读全文
posted @ 2014-09-16 21:19 _noname 阅读(757) 评论(0) 推荐(0) 编辑
摘要: >>clc>> clear>> close all>> load mri;>> imshow(D(:,:,7));>> figure,montage(D);>> figure,mov=immovie(D,map);>> movie(mov,10); 阅读全文
posted @ 2014-09-16 21:06 _noname 阅读(126) 评论(0) 推荐(0) 编辑
  2014年9月10日
摘要: 一台电脑上安装win7、win8.1、CentOS7三个系统 1. 硬盘分区2个主分区一个扩展分区 2. 装win7 旗舰版激活软件激活 3. 装win8.1 专业版安装时需输入秘钥,安装完成,激活软件激活 4. 装EasyBCD 引导启动 5. ... 阅读全文
posted @ 2014-09-10 00:26 _noname 阅读(465) 评论(0) 推荐(0) 编辑
  2014年8月20日
摘要: package com.example.utils;import java.io.ByteArrayOutputStream;import java.io.InputStream;public class StreamTool { public st... 阅读全文
posted @ 2014-08-20 21:45 _noname 阅读(124) 评论(0) 推荐(0) 编辑
摘要: package com.example.utils;import java.io.ByteArrayOutputStream;import java.io.InputStream;public class StreamTool { public static... 阅读全文
posted @ 2014-08-20 21:40 _noname 阅读(217) 评论(0) 推荐(0) 编辑
摘要: package com.example.utils;import java.io.ByteArrayOutputStream;import java.io.InputStream;public class StreamTool { public static... 阅读全文
posted @ 2014-08-20 21:35 _noname 阅读(125) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页