回覆列表
-
1 # 匠工加工
-
2 # 二師兄programmer
#include<stdio.h>
#include <stdlib.h>
int main()
{
//定義一個指標陣列儲存月份名稱
char *months[12] = { "January","February","March","April","May","June","July","August","September","October","December" };
//宣告用來儲存月份號的變數
int number;
printf("Please enter the month:\n");
scanf_s("%d", &number);
//實際在陣列中的次序比月份號少1
number--;
printf("The month"s name is:");
//輸出月份名稱
printf("%s", *(months + number));
system("pause");
return 0;
}
執行結果:
我是奕雙,現在已經畢業將近兩年了,從大學開始學程式設計,期間學習了C需要程式設計,C++需要程式設計,Win32程式設計,MFC程式設計,畢業之後進入一家影象處理相關領域的公司,掌握了用OpenCV對影象進行處理,如果大家對相關領域感興趣的話,可以關注我,我這邊會為大家進行解答哦!如果大家需要相關學習資料的話,可以私聊我哦!
char strMonth[][5]={"Jan",".",".","..."};//12 month name
int month;
printf("please input month:\n");
scanf("%d",&month);
printf("\n %s\n",strMonth[month]);