proszę napisać program który będzie zawierał modul, pętlę i funkcję
proszę napisać program który będzie zawierał modul, pętlę i funkcję
Odpowiedź
XxpatixX36
Moduł:
#include
using std :: cin ;
using std :: cout ;
void FunkcjaPetla (int x)
{
int i = 0;
while (i < x)
{
cout<
int main (int, char**)
{
int x;
cout<<"Ile razy petla ma sie wykonac ?
";
cin >> x;
FunkcjaPetla (x);
getchar();
getchar();
}