。。。。。

2227人阅读
方法①:【递归调用】
public int Foo(int i)
& & & & & & if (i & 0) return 0;
& & & & & & else if (i & 0 && i &= 2) return 1;
& & & & & & else return Foo(i - 1) + Foo(i - 2);
方法②:【for循环】
public int AddNum(int x)
& & & & & & int f1 = 1;
& & & & & & int f2 = 1;
& & & & & & int f3 = 0;
& & & & & & for (int j = 0; j & j++)
& & & & & & {
& & & & & & & & if (j & 1)
& & & & & & & & {
& & & & & & & & & & f3 = f2 + f1;
& & & & & & & & & & f1 = f2;
& & & & & & & & & & f2 = f3;
& & & & & & & & }
& & & & & & & & else
& & & & & & & & {
& & & & & & & & & & f3 = 1;
& & & & & & & & }
& & & & & & }
& & & & & & return f3;
调用(假设求第30位):
public void button1_Click(object sender, EventArgs e)
& & & & & & &int xx = Foo(30);
& & & & & & int yy = AddNum(30);
& & & & & & MessageBox.Show(xx.ToString() +&---&+ yy.ToString());
结果:832040---832040
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:944019次
积分:11080
积分:11080
排名:第939名
原创:311篇
转载:26篇
评论:214条
(2)(3)(4)(4)(5)(6)(4)(2)(5)(6)(5)(8)(4)(3)(8)(9)(5)(9)(7)(5)(6)(8)(6)(12)(6)(8)(7)(4)(6)(6)(8)(6)(4)(6)(6)(1)(5)(2)(5)(5)(7)(8)(11)(5)(8)(18)(10)(6)(5)(6)(12)(6)(6)(6)(2)(3)Download org.apache.poi.xwpf.converter.core-1.0.0.jar : org.apache.poi&&&o&&&Jar File DownloadDownload org.apache.poi.xwpf.converter.core-1.0.0.jar
Files contained in org.apache.poi.xwpf.converter.core-1.0.0.jar:
META-INF/MANIFEST.MF
META-INF/maven/fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core/pom.properties
META-INF/maven/fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core/pom.xml
org.apache.poi.xwpf.converter.core.AbstractXWPFConverter.class
org.apache.poi.xwpf.converter.core.BasicURIResolver.class
org.apache.poi.xwpf.converter.core.BorderSide.class
org.apache.poi.xwpf.converter.core.FileImageExtractor.class
org.apache.poi.xwpf.converter.core.FileURIResolver.class
org.apache.poi.xwpf.converter.core.IImageExtractor.class
org.apache.poi.xwpf.converter.core.IURIResolver.class
org.apache.poi.xwpf.converter.core.IXWPFConverter.class
org.apache.poi.xwpf.converter.core.IXWPFMasterPage.class
org.apache.poi.xwpf.converter.core.ListContext.class
org.apache.poi.xwpf.converter.core.ListItemContext.class
org.apache.poi.xwpf.converter.core.MasterPageManager.class
org.apache.poi.xwpf.converter.core.Options.class
org.apache.poi.xwpf.converter.core.PageOrientation.class
org.apache.poi.xwpf.converter.core.ParagraphLineSpacing.class
org.apache.poi.xwpf.converter.core.TableCellBorder.class
org.apache.poi.xwpf.converter.core.TableHeight.class
org.apache.poi.xwpf.converter.core.TableWidth.class
org.apache.poi.xwpf.converter.core.XWPFConverterException.class
org.apache.poi.xwpf.converter.core.XWPFDocumentVisitor.class
org.apache.poi.xwpf.converter.core.registry.AbstractColorRegistry.class
org.apache.poi.xwpf.converter.core.registry.ColorRegistry.class
org.apache.poi.xwpf.converter.core.styles.AbstractValueProvider.class
org.apache.poi.xwpf.converter.core.styles.IValueProvider.class
org.apache.poi.xwpf.converter.core.styles.TableCellInfo.class
org.apache.poi.xwpf.converter.core.styles.TableInfo.class
org.apache.poi.xwpf.converter.core.styles.XWPFStylesDocument.class
org.apache.poi.xwpf.converter.core.styles.paragraph.AbstractIndentationParagraphValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.AbstractParagraphBorderValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.AbstractParagraphRunValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.AbstractParagraphValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.AbstractSpacingParagraphValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphAlignmentValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphBackgroundColorValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphBorderBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphBorderLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphBorderRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphBorderTopValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphIndentationFirstLineValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphIndentationHangingValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphIndentationLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphIndentationRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphKeepNextValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphLineSpacingValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphNumPrValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphSpacingAfterValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphSpacingBeforeValueProvider.class
org.apache.poi.xwpf.converter.core.styles.paragraph.ParagraphTabsValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.AbstractRunValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunBackgroundColorValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontColorValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontFamilyValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontSizeValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontStyleBoldValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontStyleItalicValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunFontStyleStrikeValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunTextHighlightingValueProvider.class
org.apache.poi.xwpf.converter.core.styles.run.RunUnderlineValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.AbstractTableBorderValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.AbstractTableValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.AbstractTablelMarginValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableAlignmentValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderInsideHValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderInsideVValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBorderTopValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableBordersValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableIndentationValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableMarginBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableMarginLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableMarginRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableMarginTopValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.TableWidthValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.AbstractTableCellBorderValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.AbstractTableCellMarginValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.AbstractTableCellValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBackgroundColorValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderInsideHValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderInsideVValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellBorderTopValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellGridSpanValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellMarginBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellMarginLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellMarginRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellMarginTopValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellNoWrapValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellTextDirectionValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellVMergeValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellVerticalAlignmentValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.cell.TableCellWidthValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.AbstractTableRowExValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.AbstractTableRowMarginValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.AbstractTableRowValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowHeaderValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowHeightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowMarginBottomValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowMarginLeftValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowMarginRightValueProvider.class
org.apache.poi.xwpf.converter.core.styles.table.row.TableRowMarginTopValueProvider.class
org.apache.poi.xwpf.converter.core.utils.ColorHelper.class
org.apache.poi.xwpf.converter.core.utils.DxaUtil.class
org.apache.poi.xwpf.converter.core.utils.RomanAlphabetFactory.class
org.apache.poi.xwpf.converter.core.utils.RomanNumberFactory.class
org.apache.poi.xwpf.converter.core.utils.StringUtils.class
org.apache.poi.xwpf.converter.core.utils.StylesHelper.class
org.apache.poi.xwpf.converter.core.utils.XWPFRunHelper.class
org.apache.poi.xwpf.converter.core.utils.XWPFTableUtil.class
org.apache.poi.xwpf.converter.core.utils.XWPFUtils.class
Related examples in the same category1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.24.25.26.27.28.29.30.31.32.33.34.35.36.37.38.39.40.41.42.43.
&|&Email:info &|&& Demo Source and Support. All rights reserved.不能忘却的记忆-S.T.A.L.K.E.R游戏详细测试_硬件_科技时代_新浪网
不支持Flash
不能忘却的记忆-S.T.A.L.K.E.R游戏详细测试
Oscar、Dcx 
  1986年切尔诺贝利核电站核泄漏事故
  在开始《S.T.A.L.K.E.R 》游戏试玩之前,让我们先来温习一条1986年的新闻:
  “日,在进行一项实验时,切尔诺贝利核电站4号反应堆发生爆炸,造成30人当场死亡,8吨多强辐射物泄漏。此次核泄漏事故使电站周围6万多平方公里土地受到直接污染,320多万人受到核辐射侵害,酿成人类和平利用核能史上的一大灾难。事故发生后,原苏联政府和人民采取了一系列善后措施,清除、掩埋了大量污染物,为发生爆炸的4号反应堆建起了钢筋水泥“石棺”,并恢复了另3个发电机组的生产。此外,离核电站30公里以内的地区还被辟为隔离区,很多人称这一区域为“死亡区”。”
  然而切尔诺贝利核电站泄露事件的2个月之内,所有参与直升机封堆的人员全部壮烈牺牲,无一幸免,但正是这些英雄们的无畏,才换来了更多人生存的希望。
  核泄漏事故后,在医院接受治疗的儿童。
  由于核辐射的缘故,导致该地区产生大量的畸形婴儿。
  同时,一些动物由于受辐射影响.体形变的空前巨大。
  历时七年―S.T.A.L.K.E.R.终发布
  《S.T.A.L.K.E.R 》便是以那次切尔诺贝利核电站泄露事件为主题而制作的游戏, S.T.A.L.K.E.R.这是一长串英文的简写,游戏主要的背景是1986年苏联车诺比核电厂事变后的世界,以假想其发生了重大变异,当地环境产生怪物来发展,玩者将面对这个危险的环境,并一步步解开游戏的谜团,这款游戏具有相当优秀的画面,颓圮与灾难后的世界,配合极为真实又漂亮的风景,产生相当具有特色的FPS游戏。这款游戏的制作有别于其它欧美的游戏,主要原因在于开发小组是在乌克兰。
  这款游戏被定位为动作角色扮演而不是一般人认为的FPS游戏,已经表现出这款游戏的与众不同之处。这款游戏已经超越了普通的FPS游戏范畴而带上了浓浓的角色扮演味道。庞大的游戏范围、与大量的 NPC 交互、非线性的游戏进程以及事件背后错综的内幕,这些原本是开放 RPG 游戏的法宝如今都被融入《 S.T.A.L.K.E.R. 》之中。再加上动作游戏惊险刺激的战斗以及故事背景那诡秘的大灾难气氛,使《 S.T.A.L.K.E.R. 》散发着一种独特的吸引力。
  在游戏中,主角做一个探险者不止需要武器装备,水和食品和休息也都是必要生存条件,若是太长时间没有进食的话,你会发现自己行动的速度明显减慢,而且瞄准时难以把稳手中的枪。除了自己携带食物之外,游戏中甚至还允许你弄些“野味”来充饥,当然,考虑到身体健康这只能作为不得已时的选择。另一方面,《 S.T.A.L.K.E.R. 》的制作者们为了再现切尔诺贝利的废弃与荒凉感特地去做了实地考察,游戏的设计中参照了大量的照片与地图,游戏中的切尔诺贝利可说是原样复制了出来。
  这款游戏早在2000年时,便已经着手开发,原本预计是在2003年3月发布,但由于多方面的原因导致其多次跳票,如今已经跳票整整4年了。4年对于一款游戏来说,开发的时间实在是太长了,不仅微软的架构已经从DirectX 9.0逐渐向DirectX 10迈进,显卡的架构也更新了几代,那么当前主流的显卡运行这款游戏的效果会是怎样呢?后文中将为大家做出详细的测试。
  S.T.A.L.K.E.R特效展示及画面素质
  游戏的界面设计也是依照事故遗址的风格
  《 S.T.A.L.K.E.R. 》选用的是称为X-Ray的引擎。这款引擎支持Shader Model3.0,拥有目前流行的HDR效果设计,可以实现实时日夜气候光线变化,能为每一个纹理像素提供实时动态光线追踪功能,实现动态户外光线效果,能根据不同状况来实现不同的武器效果,比如雾天、雨天、大风时段武器都能实现不同的效果。
  虽然界面设计的非常有事故原址的风格,但游戏特效的选择却与事故原址一样古老,与经两年发布的3D游戏相比,《 S.T.A.L.K.E.R. 》所提供的画质调校选项少的可怜,仅有光线、画质、分辨率、伽玛值等几个简单的设置,其中的动态光线追踪(Dynamic Lighting)特效是DirectX 9.0b下基于Shader Model2.0中Pixel Shader2.0下的功能。游戏共分为5档画面调校,最大分辨率支持到。在该设置选项中最不能让我们满意的是没有提供更多的关于特效的选项,我们设置不能关闭游戏场景中的HDR特效,这对于一些硬件配置不高的用户来说是一个非常不妙的设计。
  在全物件动态光线追踪(Full Dynamic Lighting)的特效下,Min画质的图像效果
  在全物件动态光线追踪(Full Dynamic Lighting)的特效下,Med画质的图像效果,注意这时的杂草数量的增多。
  在全物件动态光线追踪(Full Dynamic Lighting)的特效下,Med画质的图像效果,这时的杂草数量达到最大。看来这款游戏的画质设定是以游戏中渲染物件(Object)的多少来恒定的,对于一款开发周期达7年之久的游戏来说:《 S.T.A.L.K.E.R. 》的画面水平是不能让我们满意的。下面我们将测试目前的一些主流的显卡在其中的速度表现。
  S.T.A.L.K.E.R测试平台及环境介绍
  我们的测试平台使用目前比较主流的Conroe处理器加P965 Chipset的搭配,Conroe选择的是E6300,而P965我们则使用ASUS的P5B Deluxe WiFi版本。显卡方面我们选择了市面上主流的6款产品进行测试,分别是ATi Radeon X1950Pro(575/1400MHz)、ATi Radeon X1650XT(575/1400MHz)、ATi Radeon X1650GT(450/1200MHz)、NVIDIA GeForce 7300GT(500/1000MHz) 128MB DDR3、NVIDIA GeForce 7600GT(500/1400MHz) 256MB DDR3、NVIDIA GeForce 7900GS(435/1320MHz) 256MB DDR3。
  我们《 S.T.A.L.K.E.R. 》的游戏设置环境为全物件光线追踪、画质效果是Max
  S.T.A.L.K.E.R测试成绩-
  在的标准分辨率下,ATi与NVIDIA低端的Radeon X1650GT与GeForce 7300GT均未能达到30fps的流畅运行标准,只有中端产品的GeForce 7600GT与Radeon X1650XT等级产品才能勉强流畅运行,看来若想在更高分辨率下进行游戏,非是要Radeon X1950Pro级别的显卡才能胜任。
  S.T.A.L.K.E.R测试成绩-
  当我们把分辨率提高到之后,中端产品的GeForce 7600GT与Radeon X1650XT已经不胜负荷跌落到30fps以下,就连GeForce 7900GS也仅维持在30fps左右。只有Radeon X1950Pro能维持在39fps上运行,其中GeForce 7300GT更是跌落到14fps,已经不堪托付。
  S.T.A.L.K.E.R测试成绩-
  在的高分辨率下,GeForce 7300GT甚至只有8fps的运行速率。GeForce 7900GS甚至只只有21fps的速率,只有Radeon X1950Pro才能勉强维持在30fps,看来像要在高分辨率下维持游戏的流畅运行还是需要更大的投入。
  显卡测试结论:性能平平的X-Ray引擎
  通过上面的试玩以及显卡的实际效能测试,我想可以给《 S.T.A.L.K.E.R. 》做一个简单的小结:X-Ray引擎可以提供比较主流的Shader Model3.0下的功能支持,比如HDR后处理、实时日夜气候光线变化,能为每一个纹理像素提供实时动态光线追踪功能,实现动态户外光线效果,能根据不同状况来实现不同的武器效果,比如雾天、雨天、大风时段武器都能实现不同的效果等。在AI方面有尤其非常突出的表现。但实际的游戏画面中纹理处理比较糟糕,许多金属物件比如汽车就显得很没有质感,此外物理效果也比较简单。
  在显卡硬件的选择方面,我们针对目前市场上流行的ATi、NVIDIA高中低三档产品进行了对比测试,分别给出了80xx1200三种分辨率的测试成绩,我们可以根据分辨率的递增来依次选择我们测试中的各档产品,不过在该游戏中同档次的显卡ATi芯片的产品表现的效率较高,比如同档次的GeForce 7300GT与Radeon X1650GT中,就以Radeon X1650GT的效率较高,因此我们推荐喜欢该游戏的玩家购买ATi的相应产品。对于硬件配置较低的玩家,我们建议把游戏视频设置中的光线设置改为静态光线,这样就能节省下大量的渲染资源,让游戏更流畅。Enjoy it!
【】【】【
【】【打印】【】
不支持Flash
天极yesky的其他文章
不支持Flash
不支持Flash
?     你现在的位置:&&&&&&ml...................................................跨年
ml...................................................跨年
新年快乐1 刘霆涟&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 全蚀狂爱2& 北妮卡&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 上海异人娼馆3 一目连&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 狗牙4 刘霆涟&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 女杀油地狱5& 鱼&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 颐和园6 刘霆涟&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 四千金的情人7 电瘾&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 感官世界8 pepe&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 曼陀罗9 鱼&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 云上的日子10 pepe&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& 梦想家
--------------------楼主管理员给此话题奖励了3分!
- - 带动作的
--------------------多对自己好点~
带劲,果然在一楼看的比较清楚
--------------------an awkward heart...
不是清楚,是事实所现
--------------------
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
--------------------...
與眾不同......
--------------------All Those Moments Will Be Lost in Time, Like Tears in Rain
呵呵,果然还是那个蓝魔~新年快乐
--------------------沟通就像是通天塔
--------------------
这才是真正的老枪!!!!!!!!!
--------------------.
<div id="content_ 0大火人锅..
--------------------
感谢你在新年给一片祥瑞的ML带来歪风邪气!
果然你要出手
就是狠的………………
--------------------.
...祥瑞就不叫ml了嘛 我晓得火锅也是重口味
--------------------
第二位大叔...看来很久没发泄了
--------------------多对自己好点~
我靠!你居然來了!!!
--------------------what a mess we made
頤和園 云上的日子
--------------------what a mess we made
--------------------
--------------------所谓电影,是生命的投射
<div id="content_感官世界
--------------------别人笑我忒疯癫,我笑他人看不穿,不见朱门冻死骨,无肉无酒莫升天。
哦 不对哦 没注意你的题号= =
--------------------
<div id="content_
--------------------别人笑我忒疯癫,我笑他人看不穿,不见朱门冻死骨,无肉无酒莫升天。
--------------------
<div id="content_颐和园
--------------------别人笑我忒疯癫,我笑他人看不穿,不见朱门冻死骨,无肉无酒莫升天。
冰糕...晚了一点
--------------------
<div id="content_爱人
--------------------最讨厌什么的,最讨厌了....
--------------------
我。。。。。。
--------------------梦里梦到醒不来的梦
<div id="content_烈焰情人?
--------------------别人笑我忒疯癫,我笑他人看不穿,不见朱门冻死骨,无肉无酒莫升天。
--------------------
一个都不知道。但十分的给力- -
--------------------Get healthy, sleep well...
<div id="content_ 上海异人娼馆
--------------------梦里梦到醒不来的梦
--------------------
<div id="content_ 动作太暴力了
--------------------an awkward heart...
我日~~还是gif的~
--------------------这是一部毒性非常大的电影,小孩看了会犯错误的。
<div id="content_& 穆赫兰道
--------------------人生苦短,世事无常
==好像不太对,下面的是男的?
--------------------人生苦短,世事无常
--------------------
新年快乐~~~
--------------------crush 可笑的是 这个表示迷恋的词 也能表示失望 牛津字典对crush这个词的一种解释是一种强烈而莫名 但又短暂的迷恋,而今天我第一次感到crush的另一个意思——将死
<div id="content_ 云上的日子?
--------------------an awkward heart...
<div id="content_ 好温柔 好小心翼翼 可是不认识 - 。-
--------------------梦里梦到醒不来的梦
冰糕.....被7楼裸奔中吃掉
--------------------
<div id="content_是啥??難道有隱藏的彩蛋?
--------------------what a mess we made
这叫灯下黑。。
--------------------梦里梦到醒不来的梦
--------------------an awkward heart...
嗯 的确有彩蛋彩色的跳蛋
--------------------
原來如此。。。。大家慢用~~~~~~~~
--------------------what a mess we made
--------------------梦里梦到醒不来的梦
参与话题讨论,请先
25756名成员3853个主题
可用积分:25分

我要回帖

更多关于 游戏 的文章

 

随机推荐