题解 | #农夫、羊、菜和狼的故事#
农夫、羊、菜和狼的故事
https://www.nowcoder.com/practice/ab5702134dc5402b8c5156277c67cab1
#include <iostream> using namespace std; int main() { cout<<"sheep_go"<<endl; cout<<"nothing_come"<<endl; cout<<"vegetable_go"<<endl; cout<<"sheep_come"<<endl; cout<<"wolf_go"<<endl; cout<<"nothing_come"<<endl; cout<<"sheep_go"<<endl; cout<<"succeed"<<endl; } // 64 位输出请用 printf("%lld")