ZADANIE NA JUTRO C++ PĘTLA WHILE!
Przy pomocy pętli while zrealizuj zadanie; podajemy liczbę naturalną do momentu podania liczby podzielnej przez 12. Algorytm kończy działanie napisem: ..podałeś liczbę podzielną przez 12, wieć kończę działanie pętli".
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
//licze na naj...
#include <stdafx.h>
#include <iostream>
using namespace std;
int main()
{
int liczba;
do
{
cout<<"Podaj liczbe: ";
cin>>liczba;
}while (liczba % 12!=0);
cout<<"\nPodales liczbe podzielna przez 12 wiec koncze dzialanie petli!";
cout<<"\n\n";
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int x=1;
while (x%12) cin >> x;
cout << "podales liczbe podzielna przez 12, wiec koncze dzialanie petli";
return 0;
}