ZADANIA Z PROGRAMU C++ PROSZĘ O POMOC... PILNE!!
1.Napisz program wyswietlający w kolumnie liczby od 0 do 20. Przy liczbach podzielnych przez 3 wyświetl odpowiedni komentarz.
2. Napisz prograam z pomocę petli (while) który będzie podawał NWD podanych przez Ciebie liczb
3. Napisz program który dla dowolnej liczby a>10 zapisze jej kolejne cyfry w kolumnie
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Ad. 1
#include <iostream>
using namespace std;
int main()
{
for(int i=0;i<=20;++i)
i%3?
cout << i << endl:
cout << i << "\tPodzielna\n";
system("pause");
return EXIT_SUCCESS;
}
Ad. 2
#include <iostream>
using namespace std;
int main()
{
int x,y,dzielnik;
cout << "Podaj 2 liczby oddzielone spacja: ";
cin >> x >> y;
x>y?dzielnik=y:dzielnik=x;
while((y%dzielnik)||(x%dzielnik))
--dzielnik;
cout << "NWD: " << dzielnik << endl;
system("pause");
return EXIT_SUCCESS;
}
Ad. 3
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main()
{
string a;
cout << "Podaj a: ";
cin >> a;
if(atoi(a.c_str())<=10)
{
cout << "Liczba za mala\n";
system("pause");
return EXIT_SUCCESS;
}
for(int i=0;i<strlen(a.c_str());++i)
cout << a[i] << endl;
system("pause");
return EXIT_SUCCESS;
}