题解 | #字符串连接#
农夫、羊、菜和狼的故事
http://www.nowcoder.com/practice/ab5702134dc5402b8c5156277c67cab1
投机取巧方法
先列出所有可能性 羊为关键变量 控制变量羊 之后的蔬菜和狼任一个优先 有两种可能性
#include<stdio.h>
#include<string.h>
int main() {
printf("sheep_go\nnothing_come\nvegetable_go\nsheep_come\nwolf_go\nnothing_come\nsheep_go\nsucceed\n");
printf("sheep_go\nnothing_come\nwolf_go\nsheep_come\nvegetable_go\nnothing_come\nsheep_go\nsucceed\n");
return 0;
}