| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 405 人关注过本帖
标题:麻烦哪位大侠帮我看看,哪里出错了
只看楼主 加入收藏
than
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-17
收藏
 问题点数:0 回复次数:3 
麻烦哪位大侠帮我看看,哪里出错了
#include<iostream>
using namespace std;
int main()
{
   
    int a[10],*p,min,max,*mi,*ma,*y,i,*x,t,b;
    cout<<"please enter 10integers:"<<endl;

    for(i=0;i<10;i++)
    {
        a[i]=rand()%99+1;
        cout<<a[i]<<endl;
    }
    p=a;
    min=a[0];
    max=a[9];
    for(p=a;p<a+10;p++)
    {
        if(*p>max)           
            {max=*p;ma=&*p;}
        if(*p<min)
            {min=*p;mi=&*p;}
    cout<<max<<min<<endl;     
   
    t=a[0];a[0]=*mi;*mi=t;
    t=a[9];a[9]=*ma;*ma=t;

    for(p=a;p<=a+9;p++)
    {cout<<*p<<endl;}
    return 0;
    }
搜索更多相关主题的帖子: max include please 
2012-03-17 20:44
shuijiashui
Rank: 2
等 级:论坛游民
帖 子:43
专家分:85
注 册:2009-9-1
收藏
得分:0 
   
    int a[10],*p,min,max,*mi,*ma,*y,i,*x,t,b;
          for(p=a;p<a+10;p++)//========都是地址
        t=a[0];a[0]=*mi;*mi=t;// ===空指针
    t=a[9];a[9]=*ma;*ma=t;
乱写什么,有什么意思,这样永远也学不好
   
2012-03-18 00:58
Invariably
Rank: 2
等 级:论坛游民
帖 子:54
专家分:46
注 册:2010-9-18
收藏
得分:0 
#include<iostream>
using namespace std;
int main()
{
   
    int a[10],*p=NULL,min,max,*mi=NULL,*ma=NULL,*y=NULL,i,*x=NULL,t;
    cout<<"please enter 10integers:"<<endl;

    for(i=0;i<10;i++)
    {
        a[i]=rand()%99+1;
        cout<<a[i]<<endl;
    }
    p=a;
    min=a[0];
    max=a[9];
    for(p=a;p<a+10;p++)
    {
        if(*p>max)           
            {max=*p;ma=p;}
        if(*p<min)
            {min=*p;mi=p;}
    }
    cout<<"max="<<max<<endl;
    cout<<"min="<<min<<endl;     
   
    t=a[0];a[0]=*mi;*mi=t;
    t=a[9];a[9]=*ma;*ma=t;

    for(p=a;p<=a+9;p++)
    {cout<<*p<<endl;}
    return 0;
   
}

不知道你的意识是不是这样的
2012-03-18 14:07
than
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-17
收藏
得分:0 
#include<iostream>
using namespace std;
int main()
{
   
    int a[10],*p,min,max,i,t,b;
    cout<<"please enter 10 integers:"<<endl;

    for(i=0;i<10;i++)
    {
        cin>>a[i];                //输入数组
    }
    p=a;
    max=a[0];
    min=a[9];
    for(p=a;p<a+10;p++)
    {
        if(*p>max)           
            {    max=*p;    //找出最大值,并和第一个交换
                t=a[0];
                a[0]=max;
                *p=t;   
            }
        if(*p<min)
            {
                min=*p;
                b=a[9];
                a[9]=min;
                *p=b;
            }
        
    }
    for(p=a;p<=a+9;p++)        //输出新的数组
    {cout<<*p<<"  ";}
    return 0;
}



自己悟出来了
2012-05-09 10:48
快速回复:麻烦哪位大侠帮我看看,哪里出错了
数据加载中...
 
   



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

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