标题:小程序,小疑问,求解
取消只看楼主
yss28
Rank: 2
等 级:论坛游民
帖 子:16
专家分:76
注 册:2013-3-16
结帖率:66.67%
已结贴  问题点数:20 回复次数:0 
小程序,小疑问,求解
程序代码:
/*-----------------------------------------------------
试编写一个模板函数,用来测试数组 a中的元素是否按升序排列(即 a [ i ]≤a [ i + 1 ] ,其中0≤
i<n - 1) 。如果不是,函数应返回f a l s e,否则应返回t r u e。上机测试该函数。
--------------------------------------------------------------*/
#include <iostream>
using namespace std;
template <class T>
bool Arrange(T (&s)[])
{
    int i = 0, n = 8;
    for (; i < n-1; i++)
    {
        if (s[i] <= s[i+1])
            continue;
        else
            return cout << "False" << endl;
    }
    return cout << "True" << endl;
}
int main()
{
    int a[] = {1, 22, 33, 42, 15, 54, 11, 35};
    Arrange(a);    // 这里该怎么写,才能使程序运行正确?
    return 0;
}

/*
这个是正确的程序
[color=#0000FF]#include <iostream>
using namespace std;
template <class T>
bool Arrange(T s[])
{
    int i = 0, n = 8;
    for (; i < n-1; i++)
    {
        if (s[i] <= s[i+1])
            continue;
        else
            return cout << "False" << endl;
    }
    return cout << "True" << endl;
}
int main()
{
    int a[8] = {1, 22, 33, 42, 15, 54, 11, 35};
    Arrange(a);
    return 0;
}
[/color]*/
搜索更多相关主题的帖子: 元素 
2013-09-08 13:31



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




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

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