일반적인 언어로 코드를 흉내내어 알고리즘을 써놓은 코드를 말한다
의사코드는 실제 프로그래밍 언어처럼 엄밀한 문법을 따를 필요가 없기 때문에 다양한 변종이 존재한다. 그러나 보통 사용자가 많은 C리스프, 포트란 프로그래밍 언어등의 문법을 본딴 모양이 많다.

program Name and short description
ReadDataStructure()
ReadData()
...
if Data is not perfect then exit
CalculateStatistics
Write Result in HTML-format
end program Name


ArraxMax(A,n)
tmp ← A[0];
for i ← 1 to n-1 do
if tmp < A[i] then
tmp ← A[i];
return tmp;


+ Recent posts