C语言中如果从键盘上输入一个代表星期几的数值(整数),根据下面的对应关系输出汉字星期值。

2024-11-26 06:45:23
推荐回答(4个)
回答1:

用一个指针数组存放汉字"一"到"日"字符串的指针,可用简单代码解决这问题。举例如下:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
    char *pw[7]={"一","二","三","四","五","六","日"},w;
    while(1){
        printf("Input w(1-7,w<=0 end): w=");
        if(scanf("%d",&w) && w>0 && w<8)
            printf("%d <--> 星期%s\n",w,pw[w-1]);
        else if(w<=0) break;
        else printf("Error, redo: ");
    }
    return 0;
}

回答2:

printf ("1=星期一"); 不需要后面的 ,1

其它几个一样。
里面有 %d这种的才需要后面加参数
如 printf ("%d=星期一",n);

最后一个printf少了个分号;

回答3:

最后一个printf少了个分号;

回答4:

最后一个输出语句少一个分号。