IHYPRESS.NET
C
HOME | ASP | C | CSS | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
Earn Free Bitcoin
CSimple Functions ❯ Number Output Decoration
<05.09>
/* Function print_rboxed */ /* Displays a real number in a box */ #include <stdio.h> void print_rboxed(double rnum) { printf("***********\n"); printf("* *\n"); printf("* %7.2lf *\n", rnum); printf("* *\n"); printf("***********\n"); } int main (void) { double n; printf ("Enter a real number: "); scanf ("%lf", &n); print_rboxed (n); return (0); }
Hergestellt in Deutschland / Made in Germany
Enter a real number: 132.56 *********** * * * 132.56 * * * ***********
COPYRIGHT © 2015-2024 IHYPRESS.NET. A DIVISION OF IHY PRESS. ALL RIGHTS RESERVED.