英単語が1個以上の空白類(空白または改行)で区切られて並んでいるとする。入力の中で辞書順で一番若い単語(通常の英語辞書の見出しとして最も前にくる単語)を出力するプログラムを作れ。ただし,英字はすべて小文字に置き換えて扱え。
入力
標準入力がキーボードから行われるときは、入力の最後に C-d を入力する。
出力
出力は、その英単語だけを1行として書き出せ。
例
入力
Information about everything and anything can be easily from the Internet
administered conceived obtained prohibited
It appears that you passport is no longer You had better go and renew it
valid implemented complied available
It is controversial that Japan continued sale of whale meat the international treaty on whale hunting
facilitates enforces advocates violates
出力
about
問題と出力は上記の通りです。自分のコードを実行すると大文字から小文字への変換がされていず,出力結果がInformationとなってしまいます。教えていただきたいです。
#include <stdio.h> #include <string.h> #include <stdlib.h> int scmp(const void *a, const void *b){ return strcmp(a, b); } int main(void){ char str[1000][50]; int i=0; int j=0; while(scanf("%s", str[i])!=EOF){ for(j=0;j<=strlen(str[i]);j++){ ここで小文字変換 if(str[i][j]>=65&&str[i][j]<=90){ tolower(str[i][j]); } } i++; } qsort(str, i, sizeof(str[50]), scmp); printf("%s\n", str[0]); return 0; }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/29 07:44
2020/07/29 09:08
2020/07/29 09:12
2020/07/29 09:18
2020/07/29 09:19
2020/07/29 09:22