#include <iostream>
using namespace std;
int main(void)
{
int i, koko;
double yhteensa = 0, ka, tunnit[30];
cout << "ohjelma laskee haluamasi ajanjakson aikana tehdyt << endl;
cout << "työtunnit sekä keskimääräisen työpäivän pituuden. << endl;
cout << "kuinka monta päivää:" << endl;
cin >> koko;
for(i=0;i<koko>;i++){
cout << " anna " << i+l<< ". päivän työtunnit:";
cin >> tunnit;
yhtensa=yhteensa+tunnit;
}
ka = yhteensa/koko;
cout << "Tehdyt tunnit yhteensä: " << päivän työtunnit:"; <<endl;
cout << "Keskimääräinen työpäivän pituus: " << ka <<endl;
cout << "syötetyt tunnit: ";
for (i=0;i<koko;i++){
cout << tunnit << " ";
}
}
______________________________________________________________________________
#include <iostream>
using namespace std;
{
void tulosta_matriisi(int m[5][5])
{
for (int y=0; y<5;y++)
for (int x=0; x<5;x++)
cout << m[y][x] << " ";
}
cout << endl;
}
}
int laske_summa(int m[5][5])
{
int palautus =0;
for (int y=0; y<5;y++){
for (int x=0; x<5;x++){
palautus += m[y][x];
}
}
return palautus;
}