
지문It was rainy day. Alex and his friend Mia deiced to take a walk in the park despite the rain. They wore bright waterproof coats and carried lage umbrellas. The rain made everything look fresh and new. As they strolled along winding paths, they listened to the soft patter of raindrops. They even splashed in some puddles and laughed at the unexpected fun. Later, they stopped at a small cafe and ..

지문Last weekend, Lily and her class went on a trip to the museum. The museum had many interesting exhibits, including old paintings and sculptures. Lily was especially fascinated by the dinosaur bones. she spent hours looking at them and reading the descriptions on the walls. After the visit, her teacher asked everyone to write a report about what they learned. Lily couldn't wait to tell her fami..

초급A visit to the MuseumA Rainy Day AdventureAn Unexpected SurpriseThe Lost Wallet

이 프로젝트는 클라이언트가 서버에 현재 시간을 요청하고 서버는 그 요청에 응답하여 현재 시간을 클라이언트에 전달하는 간단한 프로젝트입니다. GET 요청과 대한 이해하는데 초첨을 둡니다. 1. 프로젝트 개요목표: 클라이언트가 버튼을 클릭하면 서버에 현재 시간을 요청합니다.서버는 현재 시간을 응답으로 보내주고, 클라이언트는 그 시간을 화면에 표시합니다. 2. 폴더 구조/time-app /public index.html server.js package.json 3. 프로젝트 구현프로젝트 폴더 생성mkdir time-appcd time-app node초기화 express 설치npm init -y # package.json 생성npm install express # Express 설치 클라이언트 코..

자바로 백준 25304번 문제 풀어 보겠습니다. 문제https://www.acmicpc.net/problem/25304 풀이이 문제는 영수증에 적힐 총 금액과 각 물건의 가격 및 개수를 곱한 갑으로 계산한 총 금액이 일치하는지 확인하는 문제입니다. 1. 영수증에 적인 총 금액 X를 입력합니다.2. 물건의 종류 수 N을 입력받습니다.3. 각 물건의 가격 a와 개수 b를 입력받아 총 금액을 계산하고 변수 total에 넣습니다.4. 계산한 총 금액과 영수증의 총 금액이 같으면 Yes 다르면 No를 출력합니다. 코드import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = ne..