September 2018 2 72 Report

Poniżej przedstawiam program napisany w C++ (DevC++) proszę o wyjaśnienie mi, co on wypisuje, oraz opisanie pętlę while, ponieważ tego nie rozumiem

#include <iostream>
using namespace std;
bool funkcja (int a)
{
int ile=0;
while(a!=0)
{
if ((a%10)%2==0)
ile++;
a=a/10;
}
if (ile==2)
return true;
else
return false;
}

main()
{
for (int i=1;i<=1000;i++)
if (funkcja(i)==true)
cout<<i<<"\t";
cout<<"\n";
system("pause");
}


More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.