Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 0004.md #164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 55 additions & 1 deletion md/0004.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
โจทย์ข้อนี้สามารถแก้ได้โดยการนำสตริงที่ได้มาจากข้อมูลนำเข้ามาตรวจสอบว่ามีตัวพิมพ์ใหญ่หรือไม่และมีตัวพิมพ์เล็กหรือไม่ ทั้งนี้วิธีการหลักๆในการเขียนโค้ดสำหรับข้อนี้คือการใช้ function ที่ให้มากับภาษา (จาก cctype ใน C++ เป็นต้น) ที่เรียกกันว่า standard library เราจะใช้ function ```isupper(c)``` และ ```islower(c)``` จาก header cctype เพื่อตรวจสอบว่า ```c``` เป็นตัวพิมพ์ใหญ่หรือไม่และตรวจสอบว่า ```c``` เป็นตัวพิมพ์เล็กหรือไม่ดังนี้
โจทย์ข้อนี้สามารถแก้ได้โดยการนำสตริงที่ได้มาจากข้อมูลนำเข้ามาตรวจสอบว่ามีตัวพิมพ์ใหญ่หรือไม่และมีตัวพิมพ์เล็กหรือไม่ ทั้งนี้วิธีการหลักๆในการเขียนโค้ดสำหรับข้อนี้คือการใช้ function ที่ให้มากับภาษา (จาก cctype ใน C++ เป็นต้น) ที่เรียกกันว่า standard library เราจะใช้ function ```isupper(c)``` และ ```islower(c)``` จาก header cctype สำหรับ C++ หรือ ctype.h สำหรับ C เพื่อตรวจสอบว่า ```c``` เป็นตัวพิมพ์ใหญ่หรือไม่และตรวจสอบว่า ```c``` เป็นตัวพิมพ์เล็กหรือไม่ดังนี้

C++ :
```cpp
#include <iostream>
#include <cctype>
Expand All @@ -19,3 +20,56 @@ int main() {
}
```

C :
```c
#include <stdio.h>
#include <ctype.h>
#include <stdbool.h>

int main(){
bool has_upper = false; // เก็บว่า s มีตัวพิมพ์ใหญ่หรือไม่
bool has_lower = false; // เก็บว่า s มีตัวพิมพ์เล็กหรือไม่
char s[10001];
scanf("%s", s);
for(int i=0; s[i]!='\0'; i++){
if(isupper(s[i])) has_upper = true;
else has_lower = true;
}
if(has_lower && has_upper) printf("Mix");
else if(has_upper) printf("All Capital Letter");
else printf("All Small Letter");
}
```

C with memory allocation:
```c
#include <stdio.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdlib.h>

int main(){
bool has_upper = false; // เก็บว่า s มีตัวพิมพ์ใหญ่หรือไม่
bool has_lower = false; // เก็บว่า s มีตัวพิมพ์เล็กหรือไม่
char *s = malloc(10001); // จัดหน่วยความจำสำหรับสตริง 10000 ตัวอักษร
if (s == NULL) {
printf("Memory allocation failed!\n");
return 1;
}

// รับสตริงจากผู้ใช้ โดยกำหนดขนาดสูงสุด
if (scanf("%10000s", s) != 1) {
printf("Error reading input!\n");
free(s);
return 1;
}
for(int i=0; s[i]!='\0'; i++){
if(isupper(s[i])) has_upper = true;
else has_lower = true;
}
free(s); // ใช้ free ในการล้าง memory ที่ s ใช้มา
if(has_lower && has_upper) printf("Mix");
else if(has_upper) printf("All Capital Letter");
else printf("All Small Letter");
}
```