Programowanie
Napisz program z instrukcją wyboru
1. Informacje o autorze
2. zastosowanie instrukcji warunkowej if
3. zastosowanie instr. warunkowej prostej if......else
4. zastosowanie instr. warunkowej złożonej if_if....else
Jeśli ktoś się dobrze czuje w tej dziedzinie to proszę o pomoc. Liczę na odp. w języku C++ lecz w Pascalu także może być. Będę ogromnie wdzięczny jeśli komuś się będzie chciało ;)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Program w Pascalu. Piszę z głowy, bo nie mam kompilatora obecnie na komputerze, ale powinno być dobrze. Myślę, że podstawy znasz, więc jak coś, to przerób jak uważasz.
Program Instrukcje;
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.