Napisz program który sprawdza czy użytkownik może kupić alkochol . Program w c++
Bardzo proszę o pomoc
#include <iostream>
using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) { int wiek; cout<<"Ile masz lat?\n"; cin>>wiek; if (wiek>18) cout<<"\n\nMoge sprzedac Co alkohol."; else cout<<"\n\nOsoby niepelnoletnie nie moga spozywac alkoholu"; return 0;}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int wiek;
cout<<"Ile masz lat?\n";
cin>>wiek;
if (wiek>18)
cout<<"\n\nMoge sprzedac Co alkohol.";
else
cout<<"\n\nOsoby niepelnoletnie nie moga spozywac alkoholu";
return 0;
}