Source Code File 02-08_sushi
02-08_sushi.c
#include <ncurses.h>
int main()
{
int pieces;
const float uni = 4.5;
initscr();
addstr("SUSHI BAR");
move(2,0);
printw("We have Uni today for $%.2f.\n",uni);
addstr("How many pieces would you like? ");
refresh();
scanw("%d",&pieces);
printw("You want %d pieces?\n",pieces);
printw("That will be $%.2f!",uni*(float)pieces);
refresh();
getch();
endwin();
return 0;
}
Output Screenshot

Copyright © 1997-2025 by QPBC.
All rights reserved
