1-2二次元配列で各学生の総成績と平均成績を求める
510 ワード
/*
*
* Copyright (c)2012,
* All rightsreserved.
* : fun.cpp
* :
* :2013 3 13
* : v1.0
* :
* :
* :
* :
*/
#include
using namespace std;
int main()
{
void score(const float s[5][3]);
float s[5][3];
int i,j;
for(i=0;i<5;i++)
for(j=0;j<3;j++)
cin>>s[i][j];
chengji(s);
return 0;
}
void score(const float s[5][3])
{
int i,j,sum=0;
cout<
実行結果: