用一个指针数组存放汉字"一"到"日"字符串的指针,可用简单代码解决这问题。举例如下:
//#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;
}
printf ("1=星期一"); 不需要后面的 ,1
其它几个一样。
里面有 %d这种的才需要后面加参数
如 printf ("%d=星期一",n);
最后一个printf少了个分号;
最后一个printf少了个分号;
最后一个输出语句少一个分号。