[백준] 1065번 : 한수 - C#

강재원·2022년 10월 19일
0

[코딩테스트] C#

목록 보기
130/200



https://www.acmicpc.net/problem/1065

using System;

class Program
{
    static void Main() {
        string s=Console.ReadLine();
        int x=int.Parse(s);
        int count=99;
        if(x<100) Console.Write(x);
        else{
            for(int i=100;i<=x;i++){
                int a=i%10;
                int b=(i/10)%10;
                int c=(i/10)/10;
                if(c-b==b-a) count++;
        }
        Console.WriteLine(count);
        }
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글