2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【C#5】文字列を全て小文字に変換する

2
Posted at

はじめに

文字列を全て小文字にするプログラムを実装しました。

問題

大文字と小文字のアルファベットが混ざった文字列 S が与えられるので、S を全て小文字にした文字列を出力してください。

実装したソースコード

実装したソースコードは以下になります。

using System;

class Program
{
    static void Main()
    {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        string s = Console.ReadLine();
        string ans = s.ToLower();
        Console.WriteLine(ans);
    }
}

動作した結果

動作した結果は以下の通りです

result1.jpg

最後に

全て小文字、すべて大文字に変換のまとめ記事を近日中に挙げようと思います。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?