In Python: while True: x = raw_input("enter a string:") if "quit" in x: print("good bye") break what is equivalent in c: #include <stdio.h> ...
確定! 回上一頁