Console Programming/C# Console
백준 10809 알파벳 찾기
폰타인
2019. 11. 5. 23:45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _10809
{
class Program
{
static void Main(string[] args)
{
string input = Console.ReadLine();
for(int i = 97; i<123; i++)
{
Console.Write(input.IndexOf((char)i));
Console.Write(' ');
}
}
}
}