วันจันทร์ที่ 22 กันยายน พ.ศ. 2551

การบ้านวันที่24ก.ย.51 3-ข้อ

1. ให้เขียน job analysis 5 ข้อ จากโจทย์ต่อไปนี้ (ไม่ต้องเขียนโปรแกรม)
1.1 เพื่อหาค่าพื้นที่ของวงกลม จากสูตร พายR2 และเส้นรอบรูปจากสูตร 2พายR โดยมีรัศมีเริ่มจาก 1 ถึง 50 นิ้ว
(กำหนด พาย = 3.1415)
1.วัตถุประสงค์
เพื่อหาค่าพื้นที่ของวงกลมและเส้นรอบรูปโดยมีรัศมีเริ่มจาก1-50นิ้ว
2.>ผลลัพธ์
พายR2 = X
2พาย R = Y
พายR2 = พื้นที่วงกลม Area circle
3.>ข้อมูลนำเข้า
R

4.>ตัวแปร
R , พาย , X , T

5.>เริ่มต้นการทำงาน
1. เริ่มต้นการทำงาน
2. กำหนดค่า พาย = 3.1415
3. รับค่า R รับค่ารัศมีใส่ไว้ในตัวแปร R
4. คำนวณจากสูตร พายR2 = X , 2พายR = Y
5. แสดงผลลัพธ์ X , Y
6. จบการทำงาน

Flowchart
















2.---

2. ให้เขียนโปรแกรมดังต่อไปนี้ ด้วยภาษาซี เมื่อรันผ่านแล้ว ให้ลอก Source code ใส่กระดาษด้วยลายมือที่อ่านง่าย

2.1 ให้เขียนโปรแกรมแสดงเลข 1 – 20 (filename : rep20.cpp)
ตัวอย่าง
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

2.2 ให้เขียนโปรแกรมแสดงเลขคู่ จนถึงค่าที่กำหนด (filename : repeven.cpp)
ตัวอย่าง
Num = 10
2 4 6 8 10
---------------------------
Num = 14
2 4 6 8 10 12 14

2.1 (rep20.CPP)

#include ไม่ขึ้นแสดงว่ามันอัพไม่ได้

#include ไม่ขึ้นแสดงว่ามันอัพไม่ได้

void main()

{

int n,i;

clrscr();

printf("num:");scanf("%d",&n);

for(i=1;i<=n;i++)

{printf("%d\t",i);}

getch();

}
2.2 (repeven.CPP)
#include

#include

void main()

{

int n,i;

clrscr();

printf("num=:");scanf("%d",&n);

for (i=2;i<=n; i+=2)

{printf("%d\t",i);}

printf("\n-----------------end of file--------------------");

getch();

}

-------------------------------------------------------------------------------------
เป็นตัวอย่างอีกข้อ
#include

#include

void main()

{int lw=2,pw;

clrscr();

printf("Input Your Limit number : ");scanf("%i",&pw);

printf("\n");

while(lw<=pw)

{

printf("\t%i",lw); lw=lw+2;

}

getch();}
-------------------------------------------------------------------------------------

วันอังคารที่ 16 กันยายน พ.ศ. 2551

การบ้านวิชาพื้นฐานวิทยาการคอมพิวเตอร์ หมู่ D2วันพุธ ที่ 17 ก.ย. 51

1. พัฒนาโปรแกรมเครื่องคิดเลข โดยให้ผู้ใช้ป้อนตัวเลข 2 จำนวน และเลือกเครื่องหมาย แล้วทำการแสดงผลลัพธ์ออกทางจอภาพ ดังตัวอย่างจอภาพ (Filename : cal.cpp)

#include
#include
void main()
{
char op;
float a,b;
clrscr();
printf("Input First Number : "); scanf("%f",&a);
printf("\nInput Operator(+,-,*,/) : "); scanf("%s",&op);
printf("\nInput Second Number : "); scanf("%f",&b);
switch(op)
{
case '+': printf("\n%0.2f + %0.2f = %0.2f",a,b,a+b);break;
case '-': printf("\n%0.2f - %0.2f = %0.2f",a,b,a-b);break;
case '*': printf("\n%0.2f * %0.2f = %0.2f",a,b,a*b);break;
case '/': printf("\n%0.2f / %0.2f= %0.2f",a,b,a/b);break;
default: printf("\nPlease seleec choice (+,-,*,/)");
}
getch();
}

-------------------------------------------------------------------------------------
2. ให้เขียนโปรแกรม สำหรับคำนวณน้ำหนักมาตรฐาน โดยให้ป้อนข้อมูล ส่วนสูง น้ำหนัก เพศ[M , F] (Filename : weight.cpp)
#include
#include
void main()
{
char fm;
float h,w;
clrscr();
printf("Your Male(m) or Female(f) : ");scanf("%c",&fm);
printf("\nYour Weight : ");scanf("%f",&w);
printf("\nYour Hight : ");scanf("%f",&h); switch(fm)
switch(fm)
{
case 'm': if(h-100==w)
printf("\nYou Standardweight ");
else if(h-100
printf("\nYour weight > Standard : %0.2fkg",w-(h-100));
else if(h-100>w)
printf("\nYour weight Less Than Standard : %0.2fkg",(h-110)-w);
break;
case 'f': if(h-110==w)
printf("\nYou Standard weight ");
else if(h-110
printf("\nYour weight > Standard : %0.2fkg",w-(h-110));
else if(h-110>w)
printf("\nYour weight less Than Standard : %0.2fkg",(h-110)-w);
break;
getch();
}
-------------------------------------------------------------------------------------
3. ให้เขียนโปรแกรมรับตัวอักษรภาษาอังกฤษมาและบอกว่าเป็นสระ หรือ พยัญชนะ (Filename : eng.cpp)

#include
#include
void main()
{
char az;
clrscr();
printf("Please your input english word A-Z : ");scanf("%c",&az);
switch(az)
{
case 'a': printf(" a is article"); break;
case 'e': printf(" e is article"); break;
case 'i': printf(" i is article"); break;
case 'o': printf(" o is article"); break;
case 'u': printf(" u is article"); break;
default : printf("%c is consonant",az);
}
getch();
}
-------------------------------------------------------------------------------------
4. ให้เขียนโปรแกรมเพื่อรับจำนวนเงินบาท และบอกว่าใช้ธนบัตรประเภทใดเป็นจำนวนเท่าใด และต้องใช้เหรียญประเภทใด จำนวนเท่าใด (Filename : bank.cpp)
#include
#include
void main()
{
int mn;
clrscr();
printf("Input total money : ");scanf("%i",&mn);
{
if(mn>=1000) printf("1000 bank :%i",mn/1000);
mn=mn%1000;
}
if(mn>=500){ printf("\n500 bank :%i",mn/500);
mn=mn%500;
}
if(mn>=100){ printf("\n100 bank :%i",mn/100);
mn=mn%100;
}
if(mn>=50){ printf("\n50 bank :%i",mn/50);
mn=mn%50;
}
if(mn>=20){ printf("\n20 bank :%i",mn/20);
mn=mn%20;
}
if(mn>=10){ printf("\n10 coin :%i",mn/10);
mn=mn%10;
}
if(mn>=5){ printf("\n5 coin :%i",mn/5);
mn=mn%5;
}
if(mn>=1){ printf("\n1 coin :%i",mn);
}
getch();
}

วันอังคารที่ 9 กันยายน พ.ศ. 2551