我正在用c寫一個簡單的程序,所以我可以更好地理解語言,但是我有一個奇怪的問題。 正如你從下面的代碼中看到的,我只有一個循環,當我插入255作爲一個值時它退出。問題是,當我選擇第一(插入選項)後,我插入一個名字在節目開始像一個循環,並給了我所有的時間選擇畫面......C中的循環問題
#include<stdio.h>
#include<stdlib.h>
struct student{
char *name;
int id;
};
void insertStudent(void);
struct student * init(void);
int main(){
struct student *p;
int selectionCode=0;
while(selectionCode!=255){
printf("\nInsert students:1");
printf("\nDisplay students:2");
printf("\nExit:255");
printf("\n\nEnter selection:");
scanf("%d",&selectionCode);
p=init();
switch(selectionCode){
case 1:
insertStudent();
//printf("1\n");
break;
case 2:
//printf("2\n");
break;
case 255:
break;
}
}
//p->name="stelios";
//p->id=0;
//printf("Name:%s ID:%d",p->name,p->id);
//free(p);
//p=NULL;
return 0;
}
struct student *init(void)
{
struct student *p;
p=(struct student *)malloc(sizeof(struct student));
return p;
}
void insertStudent(void){
struct student *p;
p=init();
printf("Enter Name:");
scanf("%s",p->name);//return 1;
printf("Enter ID:");
scanf("%d",&p->id);
//printf("test");
}
是的,這將是。但是你不想每次都選擇屏幕? – 2011-05-03 14:05:29
@Doug T.Nope它不是作業。我知道Java,現在我正在學習C ... – Stelios 2011-05-03 14:10:32