Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## //if5
- //var (a,b,c) := ReadInteger3;
- var (a,b,c) := (6,18,0);
- var (cnt_положит,cnt_отриц) := (0,0);
- if (a < 0) then cnt_отриц += 1;
- if (b < 0) then cnt_отриц += 1;
- if (c < 0) then cnt_отриц += 1;
- if (a > 0) then cnt_положит += 1;
- if (b > 0) then cnt_положит += 1;
- if (c > 0) then cnt_положит += 1;
- Println($'Положит: {cnt_положит}');
- Print($'Отрицат: {cnt_отриц}');
Advertisement
Add Comment
Please, Sign In to add comment