标题:c#问题
取消只看楼主
riiaqq11
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-11-16
 问题点数:0 回复次数:2 
c#问题

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication27
{
public class sort
{
public static int[] tt = new int[size];
static int size = 10;
public sort()
{
for (int x = 0; x < 10; x++)
{
tt[x] = x;
Console.Write("{0},", tt[x]);
}
}

public delegate void go(int[] a);
public static void dosort(go b)
{
b(tt);
}
}
class sortprogram
{
public static void sx(int[] a)
{
for (int x = 0; x < a.Length - 1; x++)
{
for (int y = 0; y < a.Length - 1 - x; y++)
{
int temp;
if (a[y] > a[y + 1])
{
temp = a[y];
a[y] = a[y + 1];
a[y + 1] = temp;
}
}
}

}
}
class Program
{
static void Main(string[] args)
{

sort.go ss = new sort.go(sortprogram.sx);
sort.dosort(ss);
for (int x = 0; x < 10; x++)
{
Console.Write(sort.tt[x]);
}

}
}
}

搜索更多相关主题的帖子: public 
2007-11-16 14:35
riiaqq11
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-11-16
得分:0 
程序出错
2007-11-16 16:04
riiaqq11
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-11-16
得分:0 

这是一个排序的程序。可我运行后却发现超出了数组范围。我仔细检查了,却不能发现问题。好象没有超出数字范围啊!!

2007-11-16 17:49



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-186480-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.188183 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved