fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. #define USERNAME "admin"
  5. #define PASSWORD "password"
  6.  
  7. int main() {
  8. char username[20];
  9. char password[20];
  10.  
  11. printf("เข้าสู่ระบบ\n");
  12. printf("กรุณากรอกชื่อผู้ใช้: ");
  13. scanf("%s", username);
  14. printf("กรุณากรอกรหัสผ่าน: ");
  15. scanf("%s", password);
  16.  
  17. if (strcmp(username, USERNAME) == 0 && strcmp(password, PASSWORD) == 0) {
  18. printf("เข้าสู่ระบบสำเร็จ!\n");
  19. } else {
  20. printf("ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง!\n");
  21. }
  22.  
  23. return 0;
  24. }
  25.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
เข้าสู่ระบบ
กรุณากรอกชื่อผู้ใช้: กรุณากรอกรหัสผ่าน: ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง!