zadanie 1: Napisz program wyswietlajacy komunikat w zależności od wciśniętego klawisza:
g-grafika
p-programowanie
s-sieci operacyjne
o-systemy operacyjne
m-multimedia
u-urzadzenia
zadanie 2: Napisz program, ktory poprosi o jakas litere i poda odpowiednie imie.
(litera dowolna)
Zalezy mi na szybkim rozwiazaniu.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
Program napisany w c++
Poprostu skopiuj do deva czy innegi kompilatora i ciesz sie programem.
1
#include <iostream>
using namespace std;
int main()
{
char a; // Stworzenie zmiennej do pobrania znaku
cin >>a; // Pobranie znaku
switch(a) // Instrukcja warunkowa switch z jednym argumentem, musi byc on liczbowy, wiec litera jest zamieniana na ascii
{ case 103: // Sprawdzenie czy wartosc a jest rowna 103, jezeli tak to wykonuje zadania, jezeli nie idzie dalej
cout <<"Grafika"; // Wisanie odpowiedniego tekstu
break; // Instrukcja wymagana do zakonczenia case'a w switchu, dalej wszystko tak samo jak wczesniej.
case 112:
cout <<"Programowanie";
break;
case 115 :
cout <<"Sieci operacyjne";
break;
case 111:
cout <<"Systemy operacyjne";
break;
case 109:
cout <<"Multimedia";
break;
case 117:
cout <<"Urzadzenia";
break;};
cout <<endl; // Skonczenie lini dla estetyki
system("pause"); // Zapalzowanie programu by moc zobaczyc wynik
}
2.
#include <iostream>
using namespace std;
int main()
{
char a;
cin >>a;
switch(a)
{ case 97:
cout <<"Alicja";
break;
case 98:
cout <<"Bartosz";
break;
case 99:
cout <<"Cycolina";
break;
case 100:
cout <<"Damian";
break;
case 101:
cout <<"Erners";
break;
case 102:
cout <<"Franek";
break;
case 103:
cout <<"Gienek";
break;
case 104:
cout <<"Hubert";
break;
case 105:
cout <<"Irena";
break;
case 106:
cout <<"Jacek";
break;
case 107:
cout <<"Krzysztof";
break;
case 108:
cout <<"Lucyna";
break;
case 109:
cout <<"Mateusz";
break;
case 110:
cout <<"Norbert";
break;
case 111:
cout <<"Ola";
break;
case 112:
cout <<"Patryk";
break;
case 114:
cout <<"Rysiek";
break;
case 115:
cout <<"Stefan";
break;
case 116:
cout <<"Tomasz";
break;
case 117:
cout <<"Ula";
break;
case 119:
cout <<"Wojtek";
break;
case 122:
cout <<"Zenon";
break; }
cout <<endl;
system("pause");
}
Kod w pascalu
Ad.1
Program bal;
uses CRT;
var
i:integer;
s:char;
begin
Clrscr;
Writeln('Nacisnij klawisz...');
s := readkey;
if s = 'p' then Writeln('Programowanie') else
if s = 'g' then Writeln('Grafika') else
if s = 's' then Writeln('Sieci operacyjne') else
if s = 'o' then Writeln('Systemy operacyjne') else
if s = 'm' then Writeln('multimedia') else
if s = 'u' then Writeln('urządzenia') else Writeln('Klawisz nieprzypisany');
readln;
end.
Ad.2
Program bal;
uses CRT;
var
i:integer;
s:char;
begin
Clrscr;
Writeln('Nacisnij klawisz...');
s := readkey;
if s = 'a' then Writeln('Ala') else
if s = 'b' then Writeln('Bartek') else
if s = 'c' then Writeln('Celina') else
if s = 'd' then Writeln('Daniel') else
if s = 'e' then Writeln('Ela') else
if s = 'f' then Writeln('Franek') else
if s = 'g' then Writeln('Gabrysia') else
if s = 'h' then Writeln('Henryk') else
if s = 'i' then Writeln('Iwona') else
if s = 'j' then Writeln('Jan') else
if s = 'k' then Writeln('Karolina') else
if s = 'l' then Writeln('Lidia') else
if s = 'm' then Writeln('Magda') else
if s = 'n' then Writeln('Natalia') else
if s = 'o' then Writeln('Ola') else
if s = 'p' then Writeln('Patryk') else
if s = 'r' then Writeln('Robert') else
if s = 's' then Writeln('Staszek') else
if s = 't' then Writeln('Tomek') else
if s = 'u' then Writeln('Ula') else
if s = 'w' then Writeln('Wieslaw') else
if s = 'z' then Writeln('Zbyszek');
readln;
end.