diff options
author | Pixel <Pixel> | 2001-05-02 00:39:39 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-05-02 00:39:39 +0000 |
commit | 5cc0d45db39afff3bceae05977c89709cf9dd30a (patch) | |
tree | b1a75c3d85b295824299205d357ec56001d5a15a /lib | |
parent | 064a422245f2ef4e881f50350dbbf686283ae310 (diff) |
Plop
Diffstat (limited to 'lib')
-rw-r--r-- | lib/polynom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/polynom.c b/lib/polynom.c index 859ae48..8478531 100644 --- a/lib/polynom.c +++ b/lib/polynom.c @@ -290,10 +290,10 @@ char *ply_affichage(polynome poly) sprintf(temp, "%s%s ", rat, mute); break; case 2: - sprintf(temp, "%s%s² ", rat, mute); + sprintf(temp, "%s%s%c ", rat, mute, 178); break; case 3: - sprintf(temp, "%s%s³ ", rat, mute); + sprintf(temp, "%s%s%c ", rat, mute, 179); break; default: sprintf(temp, "%s%s^%u ", rat, mute, poly->degre); |