ขอคำชี้แนะหรือ รบกวนด้วยนะครับ
ช่วยด้วยครับ คือผมต้องการใช้ While วนอ่ะครับ แบบว่าให้กด ปุ่ม Y หรือ y กลับเข้ามาอีกครัง ถ้ากด N หรือ n ให้ออกจากโปรแกรมทันทีอ่ะครับ #include<conio.h> #include<stdio.h> #include<process.h> main(){ char i; clrscr();
while(i=='Y'||'y') { printf("do you want exit Y or N"); scanf("%c",&i); if(i=='N'||'n'){ exit(0); }
} return(0); }
|