题目描述Description 小涵很喜欢电脑游戏,这些天他正在玩一个叫做《三国》的游戏。 在游戏中,小涵和计算机各执一方,组建各自的军队进行对战。游戏中共有 N 位武将(N为偶数且不小于 4),任意两个武将之间有一个“默契值”,表示若此两位武将作为一对组合作战时,该组合的威力有多大。游戏开始前.....
分类:
其他好文 时间:
2015-07-20 18:27:40
阅读次数:
94
class 对战713 { struct Player { public string Name; public int Blood; public int Attact; pu...
分类:
其他好文 时间:
2015-07-16 23:59:50
阅读次数:
353
struct Player { public string name; public int blood; public int attack; public int defence...
分类:
其他好文 时间:
2015-07-16 00:35:51
阅读次数:
158
class Program { struct Player { public string name; public int blood; public int attack; ...
分类:
其他好文 时间:
2015-07-14 20:07:10
阅读次数:
168
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Collections;using System.T...
分类:
其他好文 时间:
2015-07-12 07:17:05
阅读次数:
153
Description《英雄联盟》(简称LOL)是由美国Riot Games开发,腾讯游戏运营的英雄对战网游。《英雄联盟》除了即时战略、团队作战外,还拥有特色的英雄、自动匹配的战网平台,包括天赋树、召唤师系统、符文等元素。简单来说,LOL是一个10人组的对战游戏,一个队伍(5个人)对抗另一个队伍(5...
分类:
其他好文 时间:
2015-05-29 00:28:29
阅读次数:
198
什么叫失败者?大致定义就是做某件事没成,打个比方,做了一个手机蓝牙连接对战游戏,做完了却没有人玩,最后也没有达到自己想象的预期。暂时把这定义为失败者。我总幻想,不是梦想,梦想是去做,然后做一个失败者或者成功者。我就是幻想,总想,不做。结果现在就连失败者都不算。loser都不是。这。。。太恐怖了 .....
分类:
其他好文 时间:
2015-04-24 21:02:47
阅读次数:
109
自己简单版:namespace ConsoleApplication25{ class Program { struct player { public string name; public int hp,...
分类:
其他好文 时间:
2015-04-19 17:29:43
阅读次数:
121
class Program { struct player { public string name; public int hp; public int gj; public ...
分类:
其他好文 时间:
2015-04-15 21:16:00
阅读次数:
133
class Program { struct player { public string name; public int hp; public int attack; p...