Advertisement
volkovich_maksim

t_07_13_v1_volkovich

Dec 13th, 2015
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.67 KB | None | 0 0
  1. {Волкович Максим (volkovcih.maksim.s@gmail.com), 112гр., v1.0,
  2. написать фрагмент программы для
  3. а)вывода на экран значения переменной х (цвет)
  4. б)ввода заданного во входном файле знаения типа "буква" и присвоить его переменной у}
  5.  
  6. type colour = (black,grey,white);
  7.      letter = (a,b,c);
  8. var x: colour; y: letter;
  9.     ch: char;
  10. {a} if x=black then write('black');
  11.     if x=grey then write('grey');
  12.     if x=white then write('white');
  13. {b} read(ch);
  14.     if ch='a' then y:=a;
  15.     if ch='b' then y:=b;
  16.     if ch='c' then y:=c;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement