递归、遍历、冒泡
2018-06-22 06:39:16来源:未知 阅读 ()
1.一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第30位数是多少, 用递归算法实现。
public class TuZi
{
public int TZ(int x)
{
if (x == 1 || x == 2)
{
return 1;
}
else
{
return TZ(x - 1) + TZ(x - 2);
}
}
}
class Program
{
static void Main(string[] args)
{
TuZi a = new TuZi();
Console.WriteLine(a.TZ(12));
}
}
2.遍历页面上所有的textbox页面并将它赋值为string.empty?
foreach (System.Windows.Forms.Control item in this.Controls)
{
if (item is System.Windows.Forms.TextBox)
{
System.Windows.Forms.TextBox tb = (System.Windows.Forms.TextBox)item;
tb.Text = string.Empty;
}
}
control类是所有控件的基类
3.实现一个冒泡排序算法
int[] arr = { 10, 29, 30, 40, 5 };
for (int i = arr.Length; i >= 2;i-- )
{
for (int j = 0; j <i - 1;j++ )
{
if (arr[j] < arr[j + 1])
{
int temp = arr[j + 1];
arr[j + 1] = arr[j];
arr[j] = temp;
}
}
}
foreach (int item in arr)
{
Console.Write(item+" ");
}
Console.Read();
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C# 递归函数详细介绍及使用方法 2019-10-08
- 快速排序 2018-12-02
- C#递归方法实现无限级分类显示效果 2018-08-26
- C# 遍历文件夹及子目录下所有图片. 2018-06-22
- .net点选验证码实现思路分享 2018-06-22
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash