C语言数组分别求和怎么求?坐着等…………
#include<stdio.h>#defineROWSIZE2#defineCOLSIZE3voidmain(){inti[ROWSIZE][COLSIZE]={0};...
#include <stdio.h>
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getch();
}
对每一行分别进行求和,不是对所有的数组进行求和,是对每一行的数组求和。 展开
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getch();
}
对每一行分别进行求和,不是对所有的数组进行求和,是对每一行的数组求和。 展开
展开全部
你的程序有点小问题。可以将temp定义成数组,保存每一行的结果。
如下:
#include
<stdio.h>
#define
ROWSIZE
2
#define
COLSIZE
3
void
main()
{
int
i[ROWSIZE][COLSIZE]={0};
int
irow=0;
int
icol=0;
int
temp[ROWSIZE]={0};
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp[irow]=temp[irow]+i[irow][icol];
}
}
for(irow=0;irow<ROWSIZE;irow++)
printf("%d\n",temp[irow]);
getchar();//这里是getchar(),不是getch()
}
如下:
#include
<stdio.h>
#define
ROWSIZE
2
#define
COLSIZE
3
void
main()
{
int
i[ROWSIZE][COLSIZE]={0};
int
irow=0;
int
icol=0;
int
temp[ROWSIZE]={0};
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp[irow]=temp[irow]+i[irow][icol];
}
}
for(irow=0;irow<ROWSIZE;irow++)
printf("%d\n",temp[irow]);
getchar();//这里是getchar(),不是getch()
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//分别求和?
#include
#include
using std::cout;
using std::endl;
using std::cin;
using std::vector;
int main()
{
vector
vec;
signed value = 0;
cout<<"十个负数,十个正数:";
while(cin>>value&&vec.size()<20)
vec.push_back(value);
for(int i = 0;i<20;++i)
value+=vec[i]>0 ? vec[i] : 0;
cout<
评论
0
0
加载更多
#include
#include
using std::cout;
using std::endl;
using std::cin;
using std::vector;
int main()
{
vector
vec;
signed value = 0;
cout<<"十个负数,十个正数:";
while(cin>>value&&vec.size()<20)
vec.push_back(value);
for(int i = 0;i<20;++i)
value+=vec[i]>0 ? vec[i] : 0;
cout<
评论
0
0
加载更多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的程序有点小问题。可以将temp定义成数组,保存每一行的结果。
如下:
#include <stdio.h>
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp[ROWSIZE]={0};
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp[irow]=temp[irow]+i[irow][icol];
}
}
for(irow=0;irow<ROWSIZE;irow++)
printf("%d\n",temp[irow]);
getchar();//这里是getchar(),不是getch()
}
如下:
#include <stdio.h>
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp[ROWSIZE]={0};
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
temp[irow]=temp[irow]+i[irow][icol];
}
}
for(irow=0;irow<ROWSIZE;irow++)
printf("%d\n",temp[irow]);
getchar();//这里是getchar(),不是getch()
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
temp=0;
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getch();
}
很简单,加一个语句就行了
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
int temp=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
temp=0;
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getch();
}
很简单,加一个语句就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
int temp=0;
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getchar();
}
每行求和时把temp赋值为零就行了
#define ROWSIZE 2
#define COLSIZE 3
void main()
{
int i[ROWSIZE][COLSIZE]={0};
int irow=0;
int icol=0;
for(irow=0;irow<ROWSIZE;irow++)
{
for(icol=0;icol<COLSIZE;icol++)
{
scanf("%d",&i[irow][icol]);
}
}
for(irow=0;irow<ROWSIZE;irow++)
{
int temp=0;
for(icol=0;icol<COLSIZE;icol++)
{
temp=temp+i[irow][icol];
}
printf("%d\n",temp);
}
getchar();
}
每行求和时把temp赋值为零就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询