solve("coDe") = "code". 小文字>大文字の場合 すべて大文字に
solve("CODe") = "CODE". 大文字>小文字の場合 すべて小文字に
solve("coDE") = "code". 大文字=小文字の場合 すべて小文字に
このような関数を作りたいと思っています。下のようにコードを書いたのですが、おかしなところがあれば教えてください。islowerやisupperのような単語が出てきてエラーメッセージの意味がよく分からないので、どういう意味なのか教えていただけないでしょうか。
codewarsでの問題なのでリンク貼っておきます
https://www.codewars.com/kata/5b180e9fedaa564a7000009a/train/c
c
1#include <ctype.h> // toupper, tolower 2#include <string.h> // strlen 3#include <stdlib.h> //malloc 4 5char *solve(const char *str) 6{ 7 int lowercase = 0; 8 int uppercase = 0; 9 int m = strlen(str); 10 11 char *result = malloc(m); 12 13 for(int n = 0; n < m; n++) 14 { 15 if((str[n]>= 'a') && (str[n]<='z')) 16 { 17 lowercase++; 18 } 19 else if((str[n]>= 'A') && (str[n]<='Z')) 20 { 21 uppercase++; 22 } 23 } 24 25 if(uppercase > lowercase) 26 { 27 28 for(int n = 0; n < m; n++) 29 { 30 result[n] = toupper(str[n]); 31 } 32 } 33 else 34 { 35 for(int n = 0; n < m; n++) 36 { 37 result[n] = tolower(str[n]); 38 } 39 } 40 41 return result; 42}
エラー
fixture.c:33:18: warning: implicitly declaring library function 'isupper' with type 'int (int)' [-Wimplicit-function-declaration] count += isupper(*pc) ? +1 : (islower(*pc) ? -1 : 0); ^ fixture.c:33:18: note: include the header <ctype.h> or explicitly provide a declaration for 'isupper' fixture.c:33:39: warning: implicitly declaring library function 'islower' with type 'int (int)' [-Wimplicit-function-declaration] count += isupper(*pc) ? +1 : (islower(*pc) ? -1 : 0); ^ fixture.c:33:39: note: include the header <ctype.h> or explicitly provide a declaration for 'islower' fixture.c:34:15: warning: implicit declaration of function 'strdup' is invalid in C99 [-Wimplicit-function-declaration] char *s = strdup(str); ^ fixture.c:34:11: warning: incompatible integer to pointer conversion initializing 'char *' with an expression of type 'int' [-Wint-conversion] char *s = strdup(str); ^ ~~~~~~~~~~~ fixture.c:36:27: warning: implicitly declaring library function 'toupper' with type 'int (int)' [-Wimplicit-function-declaration] *pc = count > 0 ? toupper(*pc) : tolower(*pc); ^ fixture.c:36:27: note: include the header <ctype.h> or explicitly provide a declaration for 'toupper' fixture.c:36:42: warning: implicitly declaring library function 'tolower' with type 'int (int)' [-Wimplicit-function-declaration] *pc = count > 0 ? toupper(*pc) : tolower(*pc); ^ fixture.c:36:42: note: include the header <ctype.h> or explicitly provide a declaration for 'tolower' fixture.c:42:11: warning: implicit declaration of function 'time' is invalid in C99 [-Wimplicit-function-declaration] srand(time(0)); ^ 7 warnings generated.
関数を
'EzZgfiAafUSHJrqYaelIMBcScjeGChmgiNOoVRQa'でテストすると
"ezzgfiaafushjrqyaelimbcscjegchmginoovrqaQ"のようになります。
回答2件
あなたの回答
tips
プレビュー