| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 515 人关注过本帖
标题:【求助】找不到问题,运行不了
取消只看楼主 加入收藏
stevenwu
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2013-12-7
结帖率:90.91%
收藏
已结贴  问题点数:10 回复次数:2 
【求助】找不到问题,运行不了
#include "stdafx.h"
#include "stdio.h"


main(){
    static char *name[]={ "Illegal day",
        "Monday","Tuesday","Wednesday",
        "Thursday","Friday","Saturday",
        "Sunday"};
    char *ps;
    int i;
    char *day_name(char *name[],int n);
    printf("input Day No:\n");
    scanf("%d,&i");
    if(i<0)  exit(1);
    ps=day_name(name,i);
    printf("Day No:%2d-->%s\n",i,ps);
}
char *day_name(char[],int n)
{
    char *pp1,*pp2;
    pp1=*name;
    pp2=*(name+n);
    return((n<1||n>7)?pp1:pp2);
}
搜索更多相关主题的帖子: include return 
2013-12-14 21:12
stevenwu
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2013-12-7
收藏
得分:0 
回复 2楼 embed_xuel
:\Program Files\Microsoft Visual Studio\7\7.cpp(18) : error C2065: 'exit' : undeclared identifier
C:\Program Files\Microsoft Visual Studio\7\7.cpp(21) : warning C4508: 'main' : function should return a value; 'void' return type assumed
C:\Program Files\Microsoft Visual Studio\7\7.cpp(25) : error C2065: 'name' : undeclared identifier
C:\Program Files\Microsoft Visual Studio\7\7.cpp(25) : error C2100: illegal indirection
C:\Program Files\Microsoft Visual Studio\7\7.cpp(25) : error C2440: '=' : cannot convert from 'int' to 'char *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
C:\Program Files\Microsoft Visual Studio\7\7.cpp(26) : error C2100: illegal indirection
C:\Program Files\Microsoft Visual Studio\7\7.cpp(26) : error C2440: '=' : cannot convert from 'int' to 'char *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
执行 cl.exe 时出错.

7.exe - 1 error(s), 0 warning(s)
还有这个。。。。。。。
2013-12-14 22:25
stevenwu
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2013-12-7
收藏
得分:0 
回复 4楼 韶志
改了还是那样
2013-12-15 14:13
快速回复:【求助】找不到问题,运行不了
数据加载中...
 
   



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

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