Читайте также: |
|
Вивести значення масивів:
#include<iostream.h>
#include<conio.h>
void show_array(int A[], int n)
{
for (int i=0; i<n; i++)
cout<<A[i]<<‘ ‘;
cout<< endl;
}
int main ()
{
int little[5]={1,2, 3, 4, 5};
int big[3]={1000, 2000, 3000};
show_array(little, 5);
show_array(big, 3);
getch();
return 0;
}
Завдання: змініть програми (слайд № 8) так, що використати наведені функції (опрацюйте декілька масивів)
Увести з клавіатури значення масивів та надрукувати їх:
#include<iostream.h>
#include<conio.h>
void get_array(int A[], int n)
{
for (int i=0; i<n; i++)
cin>>A[i];
}
int main ()
{
int little[5];
int big[3];
get_array(little, 5);
for (int i=0; i<5; i++) cout<<little[i]<<endl;
get_array(big, 3);
for (int i=0; i<3; i++) cout<<big[i]<<endl;
getch();
return 0;
}
Завдання: змініть програми (слайд № 8) так, щоб використати наведені функції (опрацюйте декілька масивів)
Опис та ініціалізація масиву
Розв’язки завдань
Слайд № 8
Задача № 1
#include <iostream.h>
#include <conio.h>
int main()
{ int b[8];
for (int I=0; I<8; I++) b[I]=0;
for (I=0; I<8; I++)
cout<<I<<”\t”<<b[I]<<”\n”;
getch (); return 0;}
Задача № 2
#include <iostream.h>
#include <conio.h>
int main()
{ int b[8]={1, 2, 3, 4, 5, 6, 7, 8};
for (int I=0; I<8; I++)
cout<<I<<”\t”<<b[I]<<”\n”;
getch ();
return 0;}
Задача № 3
#include <iostream.h>
#include <conio.h>
int main()
{ int b[10];
for (int I=0; I<10; I++) b[I]=I;
for (I=0; I<10; I++)
cout<<I<<”\t”<<b[I]<<”\n”;
getch ();
return 0;
}
Слайд № 10
Задача № 1
#include <iostream.h>
#include <conio.h>
void show_array (int a[], int n)
{for (int i=0; i<n; i++)
cout<<a[i]<<” “; cout<<endl;}
int main()
{ int b[8], c[5];
for (int I=0; I<8; I++) b[I]=0;
for (I=0; I<8; I++) c[I]=0;
show_array (b, 8); show_array (c, 5);
getch (); return 0;}
Задача № 2
#include <iostream.h>
#include <conio.h>
void show_array (int a[], int n)
{for (int i=0; i<n; i++)
cout<<a[i]<<” “;cout<<endl;}
int main()
{ int b[8]={1, 2, 3, 4, 5, 6, 7, 8};
int c[5]={9, 10, 11, 12, 13};
show_array (b, 8); show_array (c, 5);
getch (); return 0;}
Дата добавления: 2015-07-11; просмотров: 159 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
Опис масиву | | | Урок № 25 |