C/C++の宿題を片付けます 91代目
at TECH
152:デフォルトの名無しさん
07/06/25 11:15:41
>>151
1
#include <stdio.h>
#include <ctype.h>
#include <conio.h>
int main(void)
{
char ch;
ch = getche();
if('a' <= ch && ch <= 'z') printf(" -> %c\n",toupper(ch));
else if('A' <= ch && ch <= 'Z') printf(" -> %c\n",tolower(ch));
return 0;
}
2
>>147のアルファベットのとこを数字に変える
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
4769日前に更新/213 KB
担当:undef