小明请好朋友们来家里吃晚饭,但是厨房里的餐具不够了,于是小明到仓库里找新餐具。仓库里的东西都是装在一个个箱子里,箱子上面写着里面装的什么东西,现在小明想请你帮忙找出这些装餐具的箱子。
题目中的餐具只包含:碗(bowl),刀(knife),叉(fork),筷子(chopsticks)。
标签:for ring amp 一个个 turn 现在 描述 str include
3 basketball fork chopsticks
2 bowl letter
fork chopsticks
bowl
1 #include<stdio.h> 2 #include<string.h> 3 int main() 4 { 5 int n; 6 char temp[4][100]={{‘b‘,‘o‘,‘w‘,‘l‘},{‘k‘,‘n‘,‘i‘,‘f‘,‘e‘},{‘f‘,‘o‘,‘r‘,‘k‘},{‘c‘,‘h‘,‘o‘,‘p‘,‘s‘,‘t‘,‘i‘,‘c‘,‘k‘,‘s‘}}; 7 while(scanf("%d",&n)!=EOF){ 8 char str[n][100]; 9 for(int i=0;i<n;i++){ 10 scanf("%s",str[i]); 11 } 12 for(int i=0;i<n;i++){ 13 for(int j=0;j<4;j++){ 14 if(strcmp(str[i],temp[j])==0){ 15 printf("%s ",str[i]); 16 } 17 } 18 } 19 printf("\n"); 20 } 21 return 0; 22 }
Mist:注意输入格式。
标签:for ring amp 一个个 turn 现在 描述 str include
原文地址:https://www.cnblogs.com/mist2019/p/10327959.html