글
프로그래머스 C# 문자열 다루기 기본(Int32.TryParse(,))
프로그래밍
2023. 1. 22. 19:10
728x90
SMALL
using System;
public class Solution {
public bool solution(string s) {
bool answer = false;
int number = 0;
if(s.Length==4 || s.Length==6)
answer = Int32.TryParse(s, out number);
// int면 true를 반환, 아니면 false를 반환.
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 문자열 내 마음대로 정렬하기(string.OrderBy(), Linq) (0) | 2023.01.22 |
---|---|
프로그래머스 C# 시저 암호((char)(), 96, 122) (0) | 2023.01.22 |
프로그래머스 C# 문자열을 정수로 바꾸기(int.Parse) (0) | 2023.01.22 |
프로그래머스 C# 멀리 뛰기(점화식, 피보나치, JAVA) (0) | 2023.01.22 |
프로그래머스 C# 수박수박수박(삼항연산자, JAVA) (0) | 2023.01.22 |