อันทำใน Dec C นะครับ คือ จาก Code นะครับ จะเป็นการตรวจสอบอายุคนโดยให้ใส่จำนวนคนที่ต้องการรู้ทั้งหมดก่อน จากนั้นโปรแกรมจะให้ใส่อายุของคน สมมุติเลือก 2 คน แล้ว ใส่อายุเข้าไป จะแสดงผลออกมา 2 ผลบรรทัด จากการใส่อายุ 2 ครั้ง คือถ้าอยากรวม 2 บรรทัดที่กระจาย ให้ออกมาเป็นบรรทัดสรุป จะต้องทำยังไงครับ รบกวนผู้รู้ด้วยนะครับ
#include<stdio.h>
#include<conio.h>
main()
{
int a,i,old,n,c,d,e,f,g;
printf("********************************************************************************\n");
printf("1.start Program\n");
printf("2. The End\n");
printf("\nEnter Choice>> ");
scanf("%d",&n);
switch(n)
case 1:
{
printf("********************************************************************************\n");
printf("\nEnter total people>> ");
scanf("%d",&a);
for(i=1;i<=a;i++)
{
printf("Enter old >> ");
scanf("%d",&old);
if(old<10)
printf("Children\n\n",c);
if(old>10&&old<20)
printf("Teen age\n\n",d);
if(old>20&&old<35)
printf("Adult\n\n",e);
if(old>35&&old<55)
printf("Middle age\n\n",f);
if(old>55)
printf("Old age\n\n",g);
}
break;
case 2:
{
printf("##########################The end############################");
}
default : printf("Error");
}
getch();
}
สอบถามการเขียน Code จากโปรแกรม Dev C ครับ
#include<stdio.h>
#include<conio.h>
main()
{
int a,i,old,n,c,d,e,f,g;
printf("********************************************************************************\n");
printf("1.start Program\n");
printf("2. The End\n");
printf("\nEnter Choice>> ");
scanf("%d",&n);
switch(n)
case 1:
{
printf("********************************************************************************\n");
printf("\nEnter total people>> ");
scanf("%d",&a);
for(i=1;i<=a;i++)
{
printf("Enter old >> ");
scanf("%d",&old);
if(old<10)
printf("Children\n\n",c);
if(old>10&&old<20)
printf("Teen age\n\n",d);
if(old>20&&old<35)
printf("Adult\n\n",e);
if(old>35&&old<55)
printf("Middle age\n\n",f);
if(old>55)
printf("Old age\n\n",g);
}
break;
case 2:
{
printf("##########################The end############################");
}
default : printf("Error");
}
getch();
}