Skip to content

Instantly share code, notes, and snippets.

View odashi's full-sized avatar
🏠
Working from home

Yusuke Oda odashi

🏠
Working from home
View GitHub Profile
@odashi
odashi / taketa.pas
Created December 15, 2012 14:24
2006年に授業で作った多倍長電卓。
program TaketaDentaku(input, output);
const KETA_MAX = 30;
type su = array[0 .. KETA_MAX - 1] of integer;
type kazu = record
plus: Boolean;
keta: integer;
abs: su;
end;