/users
/posts
/slides
/apps
/books
mysetting
/users
/posts
/slides
/apps
/books
11:08 5/30
velog.io
11:08
velog.io
psj.log
https://velog.io/@psj0810
백엔드개발자
저작도구: velog
최종 피드 수집: 2025-02-18 04:46
전체 (89)
1d
두 수의 나눗셈 ( 정수->실수 변환)
내 풀이
class Solution {
public int solution(int num1, int num2) {
double num11 = (double)num1;
double num22 =
0
0
0
읽기모드
5d
리액트-스프링 연동
https://7ingout.tistory.com/246
0
0
0
읽기모드
1M
동영상재생기 lv.1(못품)
다른사람 풀이
class Solution {
public int convertToSeconds(String time) {
String[] split = time.split(":");
return
0
0
0
읽기모드
1M
F-lab 6주차
p.159
assertThat, is
package com.example.springoftoby.user.dao;
import com.example.springoftoby.user.domain.User;
import org.jun
0
0
0
읽기모드
1M
네트워크
네트워크로 주고받는정보
패킷 교환 네트워크
주고받는 정보를 패킷(packet)단위로 주고받는 네트워크
패킷이란 패킷교환 네트워크에서 주고받는 데이터단위
패킷 교환 네트워크는 여러개의 패킷스위치로 분산해서 보낼수있다.
오늘날 인터
0
0
0
읽기모드
1M
조건 문자열
내 풀이
class Solution {
public int solution(String ineq, String eq, int n, int m) {
String aa = ineq+eq;
boole
0
0
0
읽기모드
1M
홀짝에 따라 다른 값 반환하기(수학공식 사용)
내 풀이
class Solution {
public int solution(int n) {
int count = 1;
int num = 0;
if(n%2 == 1){
0
0
0
읽기모드
1M
공배수
내 풀이
class Solution {
public int solution(int number, int n, int m) {
int answer = number%n == 0 && number%m == 0 ?
0
0
0
읽기모드
1M
n의 배수
내 풀이
class Solution {
public int solution(int num, int n) {
int answer = num%n == 0 ? 1 : 0;
return answer;
0
0
0
읽기모드
2M
두 수의 연산값 비교하기(Math.max)
내 풀이
class Solution {
public int solution(int a, int b) {
int answer = 0;
int as = Integer.valueOf(""+a+b);
0
0
0
읽기모드
2M
더 크게 합치기
내 풀이
class Solution {
public int solution(int a, int b) {
int answer = 0;
String str1 = String.valueOf(a)+St
0
0
0
읽기모드
2M
문자열 곱하기
내 풀이
class Solution {
public String solution(String my_string, int k) {
String answer = "";
int count = 0;
0
0
0
읽기모드
2M
메모리 기반 프로그램의 동작 방식
자바의 구동 원리
자바 코드의 컴파일 과정을 얘기해 보시오.
OnePlusTwo.class 파일의 바이트코드를 확인하는 명령어를 말하시오.
답안
.java라는 확장자를 가진 자바 원시코드를 javac라는 컴파일러를 이용해서 컴파일
0
0
0
읽기모드
2M
컴퓨터구조
데이터
이진법이 무엇인가?
16진법은 1~9 와 영어 A ~ ( ) 로 모든 수를 표기하는 방법이다. 여기서 A가 나타내는 숫자와 ()안에 들어갈 영어가 무엇인지, () 안의 영어가 무엇을 나타내는 숫자인지 말하시오.
이진수 10
0
0
0
읽기모드
2M
문자 리스트를 문자열로 변환하기
내 풀이
class Solution {
public String solution(String[] arr) {
String answer = "";
answer = String.join("",arr
0
0
0
읽기모드
2M
문자열 섞기
내 풀이
class Solution {
public String solution(String str1, String str2) {
String answer = "";
char[] chaArr1
0
0
0
읽기모드
2M
문자열 겹쳐쓰기 (StringBuilder)
내 풀이
import java.util.Scanner;
class Solution {
public String solution(String my_string, String overwrite_string, int s) {
0
0
0
읽기모드
2M
문자열 돌리기
내 풀이
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
S
0
0
0
읽기모드
2M
대소문자 바꿔서 출력하기
내 풀이
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Sca
0
0
0
읽기모드
2M
문자열 반복해서 출력하기
내 풀이
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Sca
0
0
0
읽기모드
About
Badge
Contact
Activity
Terms of service
Privacy Policy