[求助]printf和puts和putchar
一个简单的菜单,我想问的是下面的程序输出函数是用printf还是用puts哪个好,能说出理由吗
putchar函数只能输出一个字符而不能输出字符串是吗
#include "graphics.h"
main()
{
int drive=DETECT,mode,x=30,y=8,pd=1;
char choice;
initgraph(&drive,&mode,"d:\program files\win-tc");
while(pd)
{
clrscr();
gotoxy(x,y);
puts("1 -- 画矩形");
gotoxy(x,y+2);
puts("2 -- 画 圆");
gotoxy(x,y+4);
puts("3 -- 画椭圆");
gotoxy(x,y+6);
puts("4 -- 退 出");
gotoxy(x,y+8);
puts("请选者 1,2,3,4:");
choice=getch();
cleardevice();
switch(choice)
{
case '1':
rectangle(220,180,420,300);
getch();
break;
case '2':
circle(320,240,70);
getch();
break;
case '3':
ellipse(320,240,0,360,100,70);
getch();
break;
case '4':
pd=0;
}
}
closegraph();
getch();
}