藏頭詩——
阿新 • • 發佈:2019-01-09
7-8 藏頭詩(15 分)
本題要求編寫一個解密藏頭詩的程式。
輸入格式:
輸入為一首中文藏頭詩,一共四句,每句一行。注意:一個漢字佔兩個位元組。
輸出格式:
取出每句的第一個漢字並連線在一起形成一個字串並輸出。同時在末尾輸入一個換行符。
輸入樣例:
一葉輕舟向東流
帆稍輕握楊柳手
風纖碧波微起舞
順水任從雅客流
輸出樣例:
一帆風順
#include<stdio.h> #include<string> #include<math.h> #include<algorithm> #include<queue> char *poem(char s[][2000],char t[]) { int i; for(i=0;i<4;i++) { t[i*2]=s[i][0]; t[i*2+1]=s[i][1]; } t[2*i]='\0'; return t; } int main() { char s[4][2000],t[20],*p=NULL; int i; for(i=0;i<4;i++) scanf("%s",&s[i]); p=poem(s,t); printf("%s\n",t); return 0; }