“马云在进行一场豪赌”,我对我屌丝朋友说。
“你是说跟王健林1亿元的赌注吗,这事儿我知道,你真out”,朋友头也不抬地只顾着吃碗里的兰州拉面了。
“1亿也叫豪赌,你也太小看马云了”,我看了看我已经见底儿的拉面碗,拿起筷子迅速地从他碗里捞了一筷子拉面。
“靠,又抢我的,跟你出来吃饭就没吃饱过”,朋友端起碗迅速地往旁边躲。
“别躲,我跟你说个事儿,关于马云的O2O之路,那才算豪...
分类:
其他好文 时间:
2014-06-03 00:01:50
阅读次数:
319
importjava.util.Scanner;
publicclassA04{
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("欢迎使用MyShopPing管理系统");
System.out.println("\n********************************..
分类:
编程语言 时间:
2014-06-02 14:44:48
阅读次数:
378
importjava.util.Scanner;
publicclassA03{
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("****************************************");
System.out.print..
分类:
编程语言 时间:
2014-06-01 16:42:08
阅读次数:
335
importjava.util.Scanner;
publicclassA02{
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("请输入月份:1~12");
intchoice=input.nextInt();
System.out.p..
分类:
编程语言 时间:
2014-06-01 16:40:54
阅读次数:
507
publicclassA01{
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
intsum=0;
intnum=2;
while(num<=100){
sum+=num;
num+=2;
}
System.out.println(sum);
}
}
分类:
编程语言 时间:
2014-06-01 16:35:36
阅读次数:
552
importjava.util.Scanner;
publicclassA05{
/**
*@paramargs
*/
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("请输入消费金额:");
intmoney=input.nextInt();
if(money>=..
分类:
编程语言 时间:
2014-06-01 16:34:23
阅读次数:
649
/*
**AVL平衡树插入例程
**2014-5-30 11:44:50
*/
avlTree insert(elementType X, avlTree T){
if(T == NULL){
T = malloc(sizeof(struct avlTree));
if(T == NULL) fatalError("Out of space!!!");
T->element = X...
分类:
其他好文 时间:
2014-06-01 09:50:16
阅读次数:
233
/******* 导出到excel
EXEC master..xp_cmdshell 'bcp SettleDB.dbo.shanghu out c:\temp1.xls -c -q -S"GNETDATA/GNETDATA" -U"sa" -P""'
/*********** 导入Excel
SELECT *
FROM OpenDataSource( 'Microsoft....
分类:
数据库 时间:
2014-06-01 09:14:39
阅读次数:
410
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:
其他好文 时间:
2014-06-01 09:05:42
阅读次数:
271
title:
Work out the first ten digits of the sum of the following one-hundred 50-digit numbers.
37107287533902102798797998220837590246510135740250
4637693767749000971264812489697007805041701826053...
分类:
其他好文 时间:
2014-06-01 08:53:33
阅读次数:
276