| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 508 人关注过本帖
标题:关于二维数组的问题
取消只看楼主 加入收藏
mghxz252
Rank: 2
等 级:论坛游民
帖 子:40
专家分:60
注 册:2010-1-18
结帖率:85.71%
收藏
已结贴  问题点数:20 回复次数:1 
关于二维数组的问题
程序代码:
程序如下:
建立一个二维数组,存储星期一到星期五每天早、中、晚三个时段的温度。
然后输出星期一到星期五每天的平均温度。
但是我每次都得不出正确答案。
到底是哪里出错了,请大家指正一下!!!


#include <iostream>
#include <string>
using std::cout;
using std::cin;
using std::string;
using std::endl;
int main(){
    int a,b,sum=0;
    float aver=0;
     float air_humidity[4][2];
    for(a=0;a<5;a++)
    {
    switch(a){       
    case 0:cout<<"enter the monday is: "; break;
    case 1:cout<<"enter the Tuesday is: ";break;
    case 2:cout<<"enter the wednesday is: ";break;
    case 3:cout<<"enter the thursday is: ";break;
    case 4:cout<<"enter the friday is: ";break;
         }             
    for(b=0;b<3;b++)
     {if(b==0)  cout<<"please enter morning: ";
          else if(b==1)  cout<<"please enter afternoon: ";
          else cout<<"please enter night: ";
         cin>>air_humidity[a][b]; }
    }
   for(a=0;a<5;a++)
   {
   switch(a){       
    case 0:cout<<"the monday is: "; break;
    case 1:cout<<"the Tuesday is: ";break;
    case 2:cout<<"the wednesday is: ";break;
    case 3:cout<<"the thursday is: ";break;
    case 4:cout<<"the friday is: ";break;
         }             
   for(b=0;b<3;b++)
   { sum=sum+air_humidity[a][b];}
    aver=sum/3;
     cout<<aver<<endl;
     sum=0;
   }
  system("pause");
}
2010-05-17 11:42
mghxz252
Rank: 2
等 级:论坛游民
帖 子:40
专家分:60
注 册:2010-1-18
收藏
得分:0 
明白了,謝謝。
2010-05-17 14:07
快速回复:关于二维数组的问题
数据加载中...
 
   



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

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