摘要: C#书籍阅读顺序按难易程度排序,并且都是专门讲解c#语言的!大部分书只是粗略的看了一遍~~~ 网上下载一套c#视频再结合下面的书籍入门没问题了!c#语言的:1、C#图解教程(已看PDF) 必看的第一本书!不明白的地方看图解之后瞬间明白了!强烈推荐看!2、你必须知道的.net(已看PDF) 必看的第... 阅读全文
posted @ 2014-05-20 19:01 伟伟LOVE齐齐 阅读(11832) 评论(3) 推荐(1) 编辑
摘要: 很多人说学c#等高级语言最好或必学c语言。。。 本人是新手学了近3个月了,昨天回头去看了看(谭浩强)c语言,觉得大部分都和c#差不多!完全没必要回头再去学c语言! 很多人说学c#等高级语言最好或必学c语言。。。那是因为c语言里有很多经典例子!真的很经典!所以伟伟就打算把c语言的经典例子用c#编写一遍,而不用再去学c了!希望对大家有用! 程序=数据结构+算法!此话很经典,但对于我们这些新手那是遥不可及的,随便拿个什么排序或七七八八的简单算法,我们只能翻白眼了,因为代码太长,太难懂了,我们又没有基础,所以伟伟把c里的经典小算法用c#编写一遍!为以后大家学算法时有个基础!编写一个C#语言程序,输入. 阅读全文
posted @ 2011-06-18 17:36 伟伟LOVE齐齐 阅读(676) 评论(1) 推荐(0) 编辑
摘要: 将一个正整数分解质因数View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { Console.Write("请输入一个数字"); int n= Convert.ToInt32(Console.ReadLine()); for (int i = 2; i <= n; i++) { wh 阅读全文
posted @ 2011-06-22 07:53 伟伟LOVE齐齐 阅读(227) 评论(0) 推荐(0) 编辑
摘要: Silverlight游戏开发设计.exe正式发布了!!!介绍 :http://www.cnblogs.com/tuobazjs/news/2011/06/20/2085487.html下载地址http://ishare.iask.sina.com.cn/search.php?key=Silverlight%D3%CE%CF%B7%BF%AA%B7%A2%C9%E8%BC%C6&format= 阅读全文
posted @ 2011-06-20 23:35 伟伟LOVE齐齐 阅读(180) 评论(0) 推荐(1) 编辑
摘要: 一个数如果恰好等于它的因子之和,这个数就称为"完数"。例如,6的因子为1、2、3,而6=1+2+3,因此6是"完数"。编程序找出1000之内的所有完数,并按下面格式输出其因子:View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { int s; for (int i = 阅读全文
posted @ 2011-06-20 23:28 伟伟LOVE齐齐 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 一球从100米高度自由下落,每次落地后反弹回原高度的一半,再次落下。求它在第十次落地,经过多少米?第十次反跳多高?View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { float sn = 100, hn = sn / 2; int n; for (n = 2; n <= 10; n++) { sn 阅读全文
posted @ 2011-06-19 21:53 伟伟LOVE齐齐 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 有一函数:当x<0时,y=-1;当x=0时,y=0;当x>0时,y=1。View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { Console.WriteLine("请输入一个数:"); int sum = 0, i; for (i = 1; i <= 100; i++) 阅读全文
posted @ 2011-06-18 22:50 伟伟LOVE齐齐 阅读(311) 评论(0) 推荐(0) 编辑