글
프로그래머스 C# 제곱 수 판별하기(Math.Sqrt(), P, J)
프로그래밍
2022. 12. 29. 12:37
728x90
SMALL
using System;
public class Solution {
public int solution(int n) {
int answer = 0;
if(Math.Sqrt(n)%1 == 0)
{
answer = 1;
}
else
{
answer = 2;
}
return answer;
}
}
/////
def solution(n):
if n**(1/2) == int(n**(1/2)) :
return 1
else :
return 2
파이썬
def solution(n):
return 1 if (n ** 0.5) % 1 == 0 else 2
def solution(n):
if n**(1/2) == int(n**(1/2)) :
return 1
else :
return 2
자바
class Solution {
public int solution(int n) {
if (n % Math.sqrt(n) == 0)
{
return 1;
}
else
{
return 2;
}
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 숨어있는 숫자의 덧셈(48, Text.RegularExpressions, P, J) (0) | 2022.12.29 |
---|---|
프로그래머스 C# 순서쌍의 개수(사실상 약수의 개수, P, J) (0) | 2022.12.29 |
프로그래머스 C# 자릿수 더하기(while문 활용하기) (0) | 2022.12.29 |
프로그래머스 C# 배열의 유사도(문자열 Equals, P,J) (0) | 2022.12.29 |
프로그래머스 C# 문자열안에 문자열(string.Contains, P, J) (0) | 2022.12.29 |