fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char result[10]; // สตริงที่ใช้เก็บผลลัพธ์
  6. scanf("%s", result);
  7.  
  8. if (strcmp(result, "win") == 0)
  9. printf("ไงล่ะ แมนยูแม่งกาก ตกรอบไปก่อน แข่ง8ชนะ8อ่ะ รู้จักเปล่า\n");
  10. else if (strcmp(result, "lose") == 0)
  11. printf("ทำใจไว้ตั้งแต่ต้นเกมแล้ว จัดตัวลงแบบนี้ ไม่ได้เน้นถ้วยนี้โว้ย\n");
  12. else
  13. printf("กรอกผลลัพธ์เป็น 'win' หรือ 'lose' เท่านั้น\n");
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5284KB
stdin
Lose
stdout
กรอกผลลัพธ์เป็น 'win' หรือ 'lose' เท่านั้น