题目例如以下: Zhejiang University has 40000 students and provides 2500 courses. Now given the registered course list of each student, you are supposed to ou
分类:
其他好文 时间:
2016-03-03 22:57:56
阅读次数:
306
看TI的官网资料:http://www.st.com/web/en/catalog/sense_power/FM89/SC444/PF250725 一、初次接触关注的信息: 1.1、概述中的关键信息 MEMS数字输出运动传感器 I2C/SPI serial interface standard ou
分类:
其他好文 时间:
2016-03-03 19:25:18
阅读次数:
255
* eval() 在字符串中能计算 >>> "5+5" Out[51]: '5+5' >>> eval("5+5") Out[52]: 10 >>> "'hello'+'world'" Out[53]: "'hello'+'world'" >>> eval("'hello'+'world'") Ou...
分类:
其他好文 时间:
2016-03-03 19:02:21
阅读次数:
166
public static void main(String[] args) { //冒泡排序 从小到大 int[] a = new int[] {23,45,67,12,97,78,8,36}; System.out.print("原始顺序:"); for(int t:a) { System.ou
分类:
编程语言 时间:
2016-02-29 23:22:59
阅读次数:
235
Problem Description Give a number n, find the minimum x(x>0) that satisfies 2^x mod n = 1. Input One positive integer on each line, the value of n. Ou
分类:
其他好文 时间:
2016-02-29 22:57:31
阅读次数:
129
//创建存储过程 alter proc [dbo].[proc_get_customer1] ( @sid varchar(10), @name varchar(20) out, @birth datetime out, @email varchar(30) out, @id char(10) ou
分类:
数据库 时间:
2016-02-29 01:57:52
阅读次数:
193
public class MulitiplicationTable { public static void main(String[] args) { //九九乘法表 for(int m=1;m<=9;m++) //行 { for(int n=1;n<=m;n++) //列 { System.ou
分类:
其他好文 时间:
2016-02-26 21:53:55
阅读次数:
173
package com.hanqi; public class lingxing { public static void main(String[] args) { for(int m=1;m<=10;m++) { //输出空格 for(int n=9;n>=m;n-- ) { System.ou
分类:
其他好文 时间:
2016-02-26 17:09:57
阅读次数:
162
第一种是以毫秒为单位计算的。 long startTime=System.currentTimeMillis(); //获取开始时间 doSomeThing(); //测试的代码段 long endTime=System.currentTimeMillis(); //获取结束时间 System.ou
分类:
编程语言 时间:
2016-02-22 15:33:16
阅读次数:
157
“==”比较的是地址,牢记。1。对象。integer 是对象 Integer i1 = 20; Integer i2 = 20 ; System.out.println(i1 == i2); // true Integer i3 = 200; Integer i4 = 200 ; System.ou
分类:
编程语言 时间:
2016-02-22 11:55:42
阅读次数:
213