|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #2239 [C] (จาก IP: 124.122.130.193)
ใครเก่ง c ช่วยหนูด้วยยย T^T
อาจารย์สั่งให้สร้างโปรแกรมหา พื้นที่ สี่เหลี่ยมอะคะ เริ่มไม่ถูกเลย ขอความชี้แนะ ด้วยคะ "ปล อ.ไม่สอนอะไรเลยให้ศึกษาด้วยตนเองอะพอจะมีวิธีที่ทำให้เข้าใจเองรึเปล่าคะ"
|
จากคุณ
:
Shi-Mu-Ka / tan_nat14@hotmail.com [2008-08-20 19:41:21]
|
|
ความคิดเห็น #27006 (จาก IP: 58.8.200.99)
เริ่มจากมีโปรแกรม ต่อมาก็มีหนังสือ ตามด้วยเขียนโปรแกรมตามหนังสือและทำความเข้าใจ
http://lily.bu.ac.th/~supot.s/cs122/prog_files.html
http://www.sourcecode.in.th/indexlession.asp?group=3
วิธีที่ทำให้เข้าใจคืออ่านและทำ แล้วค่อยถาม |
จากคุณ
:
sup98 [2008-08-20 19:56:52]
|
|
ความคิดเห็น #27010 (จาก IP: 58.8.244.143)
#include<stdio.h> #include<conio.h> void main() { clrscr(); int n1,n2; printf(Please Enter width : ); scanf("%f",&n1); printf(Please Enter height : ); scanf("%f",&n2); printf("Area of Square is %d",n1*n2); } |
จากคุณ
:
beer / nobiinlove@hotmail.com [2008-08-21 11:00:26]
|
|
ความคิดเห็น #27013 (จาก IP: 124.122.130.90)
ขอบคุณมากๆคะ ความจริงลองทำแล้ว (ด้วยตัวเอง เย้) แค่มันคำนวณได้และไม่ เออเร่อ แต่ไม่รู้ว่ามันถูกเปล่าว มันแม่งๆตรงไหน รึเปล่า ช่วยดูให้หน่อยคะ
#include<stdio.h> void main() { float b,h;
printf("Put base:"); scanf("%f",&b); printf("Put height:"); scanf("%f",&h);
{
printf("Area of Rectangle=%.2f\n",b*h);
} }
ป.ล. %.2f\n ไอคือตรงเนี่ยมันคืออะไรหรอคะคือมันไม่มีบอกในหนังสือพอไม่ใส่ก็ เออเร่อ ตลอด หนูเลยมั่วๆใส่ไป (เหอๆ) |
จากคุณ
:
Shi-Mu-Ka / tan_nat14@hotmail.com [2008-08-21 21:29:28]
|
|
ความคิดเห็น #27014 (จาก IP: 61.91.166.95)
จริงๆ ใส่ %f ก็ได้ ที่ใส่แบบ %.2f ให้ แสดง จุดทศนิยม 2 จุดครับ |
จากคุณ
:
แค่ผ่านมา [2008-08-22 11:28:09]
|
|
ความคิดเห็น #27248 (จาก IP: 123.238.85.250)
#include<stdio.h> //header for input and output #include<conio.h>//headder file of clrscr(),getch()//
void mian() //function not return any value { float a,b,c; //decleration float ตัวแปรทศนิยมนะ clrscr(); //clear screen printf("Enter the side of the squre"); scanf("%f",&a); printf("Enter the another side of the squre"); scanf("%f",&b); c=a*b //assingment a*b printf("The area of the squre ::%f",c); getch();//take the output to the screen }
//printf ::function รับค่ามาแล้วนำมาแสดงบนหน้าจอ //scanf::function รัับค่า input จาก user &a ถ้าใส่อะไรไป จะไปอยู่่่ที่ ตัวแปน a ,& คื่อ address of that variable (ตัวแปร) |
จากคุณ
:
tugan / arlif36@hotmail.com [2008-12-16 16:14:56]
|
|
ความคิดเห็น #27261 (จาก IP: 124.122.130.132)
hehe
ขอบคุณมากค่า |
จากคุณ
:
Shi-mu-ka [2008-12-27 14:18:59]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|