Volume in drive C is SYS
 Volume Serial Number is 3BA7-E2D3

Directory of C:/kugoo

2006-02-05  23:57         2,715,898 过云雨-张敬轩.mp3
2001-04-06  06:41         5,577,665 04.DON'T LET THE SUN GO DOWN ON ME.mp3
2006-02-06  00:31         4,562,882 Do you love me or not.mp3
2006-02-06  01:09         5,761,149 crystal plane.mp3
2006-02-09  13:31         3,283,669 陶喆-09-月亮代表谁的心.mp3
2006-02-10  00:47         4,369,891 tears_in_heaven.mp3
2006-02-15  20:53         5,601,280 05-lene_marlin-what_if[1].mp3
2006-02-09  13:35         4,476,209 陶喆i'll be with you(一网情深主题曲)( tension).mp3
2006-02-09  13:36         5,772,609 陶喆-活得更精彩(卡通電影-帅狗黑皮主题曲).mp3
2006-02-09  13:45         6,190,820 陶喆 - 08.无缘.mp3
2006-02-10  18:18         5,683,178 王力宏 - 心中的日月.mp3
2006-02-10  18:18         6,671,073 周杰伦 - 01.霍元甲.mp3
2006-02-11  23:09         4,405,124 westlife(西城男孩)--amazing.mp3
2006-02-11  23:36         5,883,904 16 ico you were there.mp3
2006-02-26  12:48         3,741,696 come.mp3
2006-02-15  15:52         3,801,736 琳恩玛莲lene marlin-01-sitting down here.mp3
2006-02-15  15:52         4,005,430 lene marlin-a place nearby.mp3
2006-02-15  15:53         5,568,512 disguise 伪装 - lene marlin 琳恩玛莲 (片尾曲).mp3
2006-02-15  15:54         3,970,740 琳恩玛莲lene marlin_another day.mp3
2006-02-15  15:54         5,742,759 lene marlin - lost in a moment 03 - how would it be.mp3
2006-02-15  22:53         5,421,139 lene marlin - lost in a moment 01 - my lucky day.mp3
2006-02-15  23:14         4,320,530 琳恩玛莲lene marlin-06-my love.mp3
2006-02-18  20:31         6,006,171 westlife(西城男孩)--when you tell me that you love.mp3
2006-02-18  20:34         4,519,816 westlife - face to face-maybe tomorrow.mp3
2006-02-18  20:39         6,310,626 westlife 11 change your mind.mp3
2006-02-22  15:52         8,569,091 forrest gump theme song.mp3
2006-02-22  22:48         4,456,448 电影原声带 - rainy day women-bob dylan - 阿甘正传.mp3
2006-02-22  22:48         2,932,111 奥斯卡百年经典_阿甘正传_三藩市.mp3
2006-02-26  14:22         5,630,230 sail on through.mp3
2006-02-28  11:06         5,002,971 周蕙-思念的翅膀.mp3
              34 File(s)    163,615,060 bytes
               6 Dir(s)     867,966,976 bytes free

0:08 2006-3-2
There were several jobs interviews come together these days after a batch of job application i made at jobsdb.com, and almost failure with it i think. I drop it by myself for i refuse or not try my best to finish the practice test after i got a high score on the written test.

笔试几道程序题都被偶“琢磨”出来了,功于两个月的c++底层的劳,嗯,开始有点驾驭语言的感觉,很好,努力!!

//急中智慧,自决递归和冒泡
#include <iostream>

int result = 1;

//5! = 5*4! = 5*4*3.. = 5*4*3*2*1
int Recur(int n){
  result *= n;
  if(n>1) Recur(n-1);
  else  return result;
}

int main() {
  //fun(0x8899,0x1100);
  std::cout<< "give digit for Recur...";
  int n;
  std::cin>> n;
  std::cout<< Recur(n);
  std::cin>> n;
  return 0;
}

sail on through

Well If I could stay with you night
and day I would
but we’re miles apart
Don’t know where to start
No way
As winters turing into spring
don’t know what life is gonna bring today
I’m sure we’ll be ok
And I cannot wait till we’re back
together love conqueors
all kinds of weather
When your true to what you believe
We’ll Sail On through
When your true to what you believe
We’ll Sail On through
Well if i could say I’d be back
some day would you wait
would you wait, would you wait
I can’t bear the thought that your
hearts with someone else
That your hearts with someone else
When spring has gone and summer here
I feel there’s nothing left to fear
Because I know you’ll there soon
And I cannot wait till we’re back
together love conqueors
all kinds of weather
When your true to what you believe
We’ll Sail On through
When your true to what you believe
We’ll Sail On through
La la la la....la la la
When spring has gone and summer here
I feel there’s nothing left to fear
Because I know you’ll there soon
And I cannot wait till we’re back
together love conqueors
all kinds of weather
When your true to what you believe
We’ll Sail On through
When your true to what you believe
We’ll Sail On through
And I cannot wait till we’re back
together love conqueors
all kinds of weather
When your true to what you believe
We’ll Sail On through
When your true to what you believe

February 2006相关推荐

  1. 《Windows Communication Foundation之旅》系列之一

    <Windows Communication Foundation之旅>系列之一 前言:WCF是微软基于SOA(Service Oriented Architecture)推出的.Net平 ...

  2. AJAX:Getting Started

    AJAX:Getting Started From MDC Main Page > AJAX > Getting Started This article guides you throu ...

  3. 基于用例点来度量软件规模并管理进度 之三

    复用后的规模估算 需求复用 在需求可复用的情况下,识别可复用的用例所占的完成度,求和可得初始折算已完成用例点数,规模数据为全部用例点数减去初始折算已完成用例点数,以折算已完成用例点数来跟踪进度时,注意 ...

  4. [WCF]利用net.tcp傳輸協定來建置WCF Service

    http://www.dotblogs.com.tw/puma/archive/2009/06/21/wcf-net-tcp-channelfactory-clientbase.aspx 最近很少在寫 ...

  5. mysql相关文献及翻译_MySQL数据库管理外文翻译文献中英文.doc

    外文文献翻译 () 文献出处: Proceedings of IEEE Visual '96, Melbourne, Australia, February 2006, p. 447-458 英文原文 ...

  6. Microsoft PHP.Net ?

    居然发现老外有个项目在把PHP搞成象.NET那样咯,核心是Framework 上把 PHP 编译为MSIL. 居然见http://www.php-compiler.net/,而且今年居然还FINAL ...

  7. The C10K problem

    原文:http://www.kegel.com/c10k.html 转载:https://rtoax.blog.csdn.net/article/details/117317900 译文:https: ...

  8. 工作流牛人 Jan Mendling

    个人主页  http://wi.wu-wien.ac.at/nm/en/mendling Books and Proceedings: J. Mendling, ed.: BPM Demo Sessi ...

  9. Making Sense of all these Crazy Web Service Standards

    转自: https://www.infoq.com/articles/ws-standards-wcf-bustamante It has been eight years now since SOA ...

最新文章

  1. mysql ef sql语句_EF to MySQL 的 Database.ExecuteSqlCommand 和 SqlQuery
  2. .NET不用代码生成器自己写一个生成Code的DLL 自动动态生成三层架构(一)概况...
  3. VTK:网格之SubdivisionDemo
  4. 【ArcGIS Pro微课1000例】0008:ArcGIS Pro加载不同来源的在线底图数据
  5. 吴恩达深度学习 —— 4.1 深层神经网络
  6. python文件备份_基于 Python 的文件备份
  7. React 的诞生过程
  8. mysql10---索引优化
  9. 斐讯盒子T1_【YYF固件】夏杰语音实用版刷机固件及教程分享
  10. php中strtotime函数,PHP中strtotime函数用法举例
  11. js截取视频第一帧_学学javascript如何截取视频第一帧
  12. Flutter Animation 3D仿真书本翻页动画效果
  13. python查看哪些内存被释放_python内存不释放原理 | shell's home
  14. nacos修改用户名密码
  15. 【硬核】肝了一个月,Cisco网络工程师知识点总结
  16. 分布式系统架构实例剖析
  17. 【CSS】CSS实现三角形(一)
  18. OC小游戏之英雄打怪兽
  19. 从mpeg ts文件中提取I帧(3):pes包的解析
  20. R语言学习之数据分析实战(一)

热门文章

  1. 开源应用中心 | 私域流量神器全新上线,免代码轻松部署
  2. Dreamweaver 2021 for macOS的安装与网页创建
  3. Java文件读取方式和效率性能对比
  4. 判断两条线段相交(跨立实验)
  5. u盘安装ubuntu出现:【error5】Input/output error的解决办法之一
  6. 用项目举例说明什么是是跨域访问
  7. python keyshot_KeyShot7:强大的功能改进!
  8. vue中怎么重置data和data中某个属性的初始状态?
  9. OSChina 周六乱弹 ——丈母娘和老丈人都随便你挑
  10. pdf文件怎么去除水印,pdf去除水印方法介绍