치춘짱베리굿나이스
[백준] 2372 본문
Livestock Count
문제
Print a table that describes the current count of all your livestock.
출력
Print the table below as shown. The character “-”, is a dash not an underscore.
풀이
with Ada.Text_IO;
procedure Hello is begin
Ada.Text_IO.Put_Line("Animal Count");
Ada.Text_IO.Put_Line("-----------------");
Ada.Text_IO.Put_Line("Chickens 100");
Ada.Text_IO.Put_Line("Clydesdales 5");
Ada.Text_IO.Put_Line("Cows 40");
Ada.Text_IO.Put_Line("Goats 22");
Ada.Text_IO.Put_Line("Steers 2");
end Hello;
'기타공부 > 기타의 기타' 카테고리의 다른 글
[백준] 2377 (0) | 2023.07.05 |
---|---|
M1 맥에 가상환경 설치하기 (Ubuntu) + ssh 설정 (0) | 2022.07.19 |
VSCode 자주쓰는 단축키 정리 (0) | 2021.03.17 |
200810 Matlab csv -> RGB scatter graph (0) | 2021.02.09 |
200805 VSCode 자주쓰는 명령어 정리 (0) | 2021.02.09 |
Comments