陣列元素相加不求人
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//宣告陣列
int a[10];
//給陣列值0~9
for( int i = 0; i < 10 ; i++ )
{
a[i] = i;
}
//宣告結果變數,初始值給0
int sum = 0 ;
//將陣列的值相加
for(int i = 0 ; i < 10 ; i++ )
{
sum = sum + a[i] ;
// sum += a[i] ;
}
cout << "陣列a的元素值為" <<endl;
for(int i = 0 ; i < 10 ; i ++)
{
cout << "a[" << i << "] = " << a[i] << endl;
}
cout << "a陣列值總和為" << sum << endl;
system("pause");
return 0;
}
#include<cstdlib>
using namespace std;
int main()
{
//宣告陣列
int a[10];
//給陣列值0~9
for( int i = 0; i < 10 ; i++ )
{
a[i] = i;
}
//宣告結果變數,初始值給0
int sum = 0 ;
//將陣列的值相加
for(int i = 0 ; i < 10 ; i++ )
{
sum = sum + a[i] ;
// sum += a[i] ;
}
cout << "陣列a的元素值為" <<endl;
for(int i = 0 ; i < 10 ; i ++)
{
cout << "a[" << i << "] = " << a[i] << endl;
}
cout << "a陣列值總和為" << sum << endl;
system("pause");
return 0;
}