benjama409   12-03-2013, 10:59 AM
#1
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main(){
char name[10];
int study,score[10],i,count=0;
printf("Enter Number of student:");
scanf("%d",&study);
for(i=1;i<=study;i++){
printf("No.%d\n",i);
printf("Enter name:");
scanf("%s",name);
printf("Enter score:");
scanf("%d",&score[i]);
}
system("cls");
printf("More than 50 is pass\n");
for(i=1;i<=study;i++){
if(score[i]>=50 && score[i]<=100){
count=count+1;
printf("No.%d %s score %d\n",i,name,score[i]);
}

}
printf("The student is pass the test is %d people",count);
getch();
}
อันนี้ผมเขียนเป็นโปรแกรมตรวจสอบนักเรียนที่ผ่านกี่คน
จากโค้ดก็ไม่มีอะไรผิดแหละครับ แต่เพียงแต่ว่า ผลลัพธ์สุดท้ายนี่สิครับ
หากเราให้แสดงชื่อ ของคนที่สอบผ่าน จะต้องใช้ฟังชั่นใดอะครับ เพราะผลลัพธ์ที่แสดงผล
มันขาดตรงชื่อ ข้อความเป๋็นสตริง ที่แสดงไม่ตรงกับข้อมูลที่เราป้อนไว้อะครับ

หากงงๆลองไปเทสโค้ดดูก่อนได้ครับ ผมติดตรงชื่อเนี่ยแหละครับแสดงชื่อไม่ตรงตามข้อมูลที่ป้อน

ขอบคุณล่วงหน้าครับ
winggames   12-03-2013, 11:13 AM
#2
ตัวแปร name เป็น array ต้องใส่ index ด้วยครับ name[i]
benjama409   12-03-2013, 05:07 PM
#3
ผมกลัวว่าพอแสดงผลเป็นชื่อ มันจะปสดงเพียงตัวอักษรเดียวอะครับ เป็นอักขระแทน
winggames   12-03-2013, 06:39 PM
#4
งั้นเปลี่ยน char เป็น pointer array สิครับ
benjama409   12-03-2013, 07:44 PM
#5
ทำยังไงอะครับไม่เคยใช้เลย
winggames   12-04-2013, 11:13 AM
#6
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>

int main(){
char (*name[10])[10];
int study,score[10],i,count=0;

printf("Enter Number of student:");
scanf("%d",&study);
for(i=1;i<=study;i++){
printf("No.%d\n",i);
printf("Enter name:");
scanf("%s",&name[i]);
printf("Enter score:");
scanf("%d",&score[i]);
}
system("cls");
printf("More than 50 is pass\n");
for(i=1;i<=study;i++){
if(score[i]>=50 && score[i]<=100){
count=count+1;
printf("No.%d %s score %d\n",i,&name[i],score[i]);
}
}
printf("The student is pass the test is %d people",count);
getch();
}
benjama409   12-04-2013, 12:37 PM
#7
จะลองเอาไปใช้ดูครับขอบคุณครับ
  
Users browsing this thread: 1 Guest(s)
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.