Witam. Potrzebuję pomocy w przepisaniu tego oto programu który jest napisany w jezyku Pascal na język C++ . Będzie naj jeśli wszystko będzie się ładnie kompilować. Program musi być cały od a do z. Bardzo Prosze o pomoc.
Oto program:
var age: integer;
begin
WriteLn('Informacja o autorze');
WriteLn;
Write('Podaj swoj wiek: ');
ReadLn(age);
If age = 0 then WriteLn('Na pewno masz 0 lat?');
If age >= 18 then
WriteLn('Jestes pelnoletni!')
else
WriteLn('Nie jestes pelnoletni!');
If age<>0 then
If age=18 then WriteLn('Masz 18 lat! Gratulacje')
else WriteLn('Nie masz 18 lat');
ReadLn;
end.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
int age;
cout <<"Informacje o autorze " << endl;
cout <<"Podaj swoj wiek " ;
cin >> age;
if (age==0)
cout <<"Na pewno masz 0 lat?" << endl;
if (age>= 18 )
cout <<"Jestes pelnoletni" << endl;
else
cout << "Nie jestes pelnoletni" << endl;
if (age!=0)
{
if (age==18)
cout << "Masz 18 lat! Gratulacje" << endl;
else
cout <<"Nie masz 18 lat" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "Informacja o autorze \n";
cout << "Podaj swoj wiek: ";
cin >> age;
if (age==0) cout << "Napewno masz 0 lat?\n";
if (age >= 18) cout << "Jestes pełnoletni!\n";
else cout << "Jesteś niepełnoletni!";
if (age!=0&&age==18) cout << "Gratulacje, masz 18 lat!\n";
else cout << "Nie masz 18 lat!\n";
return 0;
}