〖放分〗用C#写出HelloWorld
用C#写输出HelloWorld的小程序最后分数以回复数量来定
如果超过25个回复则前25个有效回复得2分
否则则以50分/具体有效回复总数
截止到周五
附上随手写的
程序代码:
static void Main(string[] args) { //大括号内数字为Ascii码 int[] helloWorld = { 72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100,33}; for (int i = 0; i<helloWorld.Length; i++) { Console.Write(Convert.ToChar(helloWorld[i])); } Console.WriteLine("\n\tby:ら.花舞花落泪"); Console.ReadKey(); }
附上Ascii码表
http://app.baidu.com/asciimabiao?keyword=ascii%E7%A0%81%E8%A1%A8
[ 本帖最后由 w024680 于 2012-3-12 11:22 编辑 ]