| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 445 人关注过本帖
标题:求教啊...怎么浏览的是乱码啊...求解啊
只看楼主 加入收藏
q693194975
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-5-20
结帖率:0
收藏
已结贴  问题点数:20 回复次数:7 
求教啊...怎么浏览的是乱码啊...求解啊
#include"stdio.h"
#include"malloc.h"
#include"stdlib.h"
#include"string.h"
#define LEN sizeof(slinktype)
typedef struct student
{
    int num;
    char name[8];
    char sex[4];
    float math;
    float wuli;
    float pingshi;
    float sum;
    struct student *next;
}stud;
stud *create_list();
int insert_list(stud *head,stud *std,int n);
int del_list(stud *head,stud *std);
stud *find_list(stud *head,stud *std);
void brow_list(stud *head);
void main()
{
    stud *head;
    stud newstd;
    int choice;
    head=NULL;
    printf("学生信息系统\n");
    printf("1.建立列表\n");
    printf("2.插入新生\n");
    printf("3.查找学生\n");
    printf("4.删除学生\n");
    printf("5.数据浏览\n");
    printf("0.退出程序\n");
    do
    {
        printf("请选择操作(输入0-5):");
        scanf("%d",&choice);
        if(choice>5||choice<0)
        {
            printf("输入错误!\07\n");
            continue;
        }
        switch(choice)
        {
        case 1:
                if(head==NULL)
                    head=create_list();
                break;
        case 2:
                if(head==NULL)
                {
                    printf("链表未建立!\n");
                    break;
                }
                while(1)
                {
                    printf("学号(输入0结束):");
                    scanf("%d",&newstd.num);
                    if(newstd.num==0)
                        break;
                    printf("姓名:");
                    scanf("%s",newstd.name);
                    insert_list(head,&newstd,-1);
                        printf("姓别:");
                    scanf("%s",newstd.sex);
                    insert_list(head,&newstd,-1);
                        printf("数学:");
                    scanf("%f",&newstd.math);
                    insert_list(head,&newstd,-1);
                         printf("物理:");
                    scanf("%f",&newstd.wuli);
                    insert_list(head,&newstd,-1);
                         printf("平时成绩:");
                    scanf("%f",&newstd.pingshi);
                    insert_list(head,&newstd,-1);
                        
                }
                break;
        case 3:
                printf("输入姓名:");
                scanf("%s",newstd.name);
                find_list(head,&newstd);
                break;
        case 4:
                printf("输入姓名:");
                scanf("%s",newstd.name);
                del_list(head,&newstd);
        case 5:
                brow_list(head);
                break;
        default:
                return;
        }
    }while(1);
}
stud *create_list()
{
stud *head;
head=malloc(sizeof(stud));
if(head!=NULL)
printf("链表已建立");
else
printf("没有足够的空间\n");
head->next=NULL;
head->num=0;
return head;
}
int insert_list(stud *head,stud *std,int n)
{
    stud *p,*q,*s;
    s=malloc(sizeof(stud));
    if(s==NULL)
    {
        printf("没有足够的空间\n");
        return 0;
    }
    q=head;
    p=head->next;
    while(p!=NULL&&n!=q->num)
    {
        q=p;
        p=p->next;
    }
    q->next=s;
    s->next=p;
    strcpy(s->name,std->name);
    s->num=std->num;
    return 1;
}
stud *find_list(stud *head,stud *std)
{
    stud *p;
    p=head;
    while(p!=NULL&&strcmp(p->name,std->name))
        p=p->next;
    if(p!=NULL)
    {
        printf("学号:%d姓名:%s性别:%s\n",p->num,p->name,p->sex);
    }
    else
        printf("查无此人\n");n
    return p;
}
int del_list(stud *head,stud *std)
{
    stud *p,*q;
    q=head;
    p=head->next;
    while(p!=NULL&&strcmp(p->name,std->name))
    {
        q=p;
        p=p->next;
    }
    if(p!=NULL)
    {
        q->next=p->next;
        free(p);
        printf("删除完成\n");
        return 1;
    }
    else
    {
        printf("查无此人!\n");
        return 0;
    }
}
void brow_list(stud *head)
{
    stud *p;
    p=head->next;
    while(p!=NULL)
    {
        printf("学号:%d   姓名:%s     性别:%s  数学:%f    物理:%f    平时成绩:%f\n",p->num,p->name,p->sex,p->math,p->wuli,p->pingshi);
        p=p->next;
    }
        
}
2011-05-20 22:28
liujigen
Rank: 2
等 级:论坛游民
帖 子:32
专家分:63
注 册:2010-8-24
收藏
得分:10 
没有啥问题呀,你是不是区域语言设置的不是中文,或者是编译器的问题吧
2011-05-20 22:53
q693194975
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-5-20
收藏
得分:0 
回复 2楼 liujigen
怎么不能贴图咧...我吧运行情况给你看



[ 本帖最后由 q693194975 于 2011-5-20 23:03 编辑 ]
2011-05-20 23:02
q693194975
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-5-20
收藏
得分:0 
浏览从姓别后就是乱码了
2011-05-20 23:05
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
收藏
得分:10 
从文件中读取后是乱码?

                                         
===========深入<----------------->浅出============
2011-05-21 09:42
q693194975
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-5-20
收藏
得分:0 
回复 5楼 laoyang103
没有用到文件啊...下面是结果
2011-05-21 11:26
q693194975
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2011-5-20
收藏
得分:0 
图片附件: 游客没有浏览图片的权限,请 登录注册
2011-05-21 11:26
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
收藏
得分:0 
字符串没有结束标志 导致的

                                         
===========深入<----------------->浅出============
2011-05-28 09:28
快速回复:求教啊...怎么浏览的是乱码啊...求解啊
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023155 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved