본문 바로가기

전체 글252

1차원 배열문제 import java.util.Scanner; public class q5_6 { public static void main(String[] args) { // TODO Auto-generated method stub String[] words = { "television","computer","mouse","phone"}; Scanner scanner = new Scanner(System.in); //toCharArray를 사용함으로써, //question에는 {'t','e','l','e','v','i','s','i','o','n'}가 가게된다 for(int i=0; i 2022. 8. 9.
2차원 배열 public class quiz1 { public static void main(String[] args) { // TODO Auto-generated method stub //String[] name = new String[3]; //name[0] = "kim"; //name[1] = "dd"; //name[2] = "qq"; //System.out.println(name[0]); //출력값 : kim // //String[] name = {"kim","echo","bravo"}; //System.out.println(name[2]); //출력값 : bravo //int[][] score = new int[4][3]; //score[0][0] = 100; //System.out.println(score.. 2022. 8. 8.
숙제해석 from flask import Flask, render_template, request, jsonify app = Flask(__name__) from pymongo import MongoClient client = MongoClient('mongodb+srv://text:sparta@cluster0.44vwqnl.mongodb.net/Cluster0?retryWrites=true&w=majority') db = client.dbsparta @app.route('/') def home(): return render_template('index.html') @app.route("/homework", methods=["POST"]) def homework_post(): name_receive = reque.. 2022. 8. 8.
화성땅 공동구매 (mongodb, jquery, ajax, api) - mongodb 사용법 from pymongo import MongoClient client = MongoClient('mongodb+srv://text:sparta@cluster0.44vwqnl.mongodb.net/Cluster0?retryWrites=true&w=majority') db = client.dbsparta # 저장 - 예시 doc = {'name':'bobby','age':21} db.users.insert_one(doc) # 한 개 찾기 - 예시 user = db.users.find_one({'name':'bobby'}) # 여러개 찾기 - 예시 ( _id 값은 제외하고 출력) all_users = list(db.users.find({},{'_id':False})) # 바꾸기 - 예.. 2022. 8. 7.
인터페이스 / 지역변수 / 인스턴스변수(전역변수,필드,멤버) interface Flyable{ void fly(int x ,int y, int z); } //추상클래스로 이루어진 인터페이스 class PPigeon implements Flyable{ private int x,y,z; //인스턴스변수 (전역변수 선언) //지역변수 x,y,z public void fly(int x, int y, int z) { printLocation(); // 해당 메소드 불러와서, 기존 인스턴스변수 초기화 값 0,0,0사용 System.out.println("이동합니다"); this.x = x; this.y = y; this.z = z; // 인스턴스 변수에 지역변수 값을 넣음 printLocation(); // 인스턴스 변수에 담긴 값(지역변수 1,2,3)을 // princtL.. 2022. 8. 6.
데이터베이스, Mysql (2) /JOIN 데이터 베이스의 장점 topic 테이블을 author / topic으로 분리하였음. 이를 통해 중복을 제거하였음. 위 내용을 CMD에 표현하면 아래와 같다 이제 두 테이블을 조인시켜, 하나의 테이블로 보이게 할 예정이다. 아래 내용은 이렇다 topic테이블에 author 테이블을 조인(결합)시켜줘 근데 그 기준은, topic테이블의 author_id의 값과 author테이블의 id값이 같다면 두 개의 테이블을 하나의 테이블로 해줘 근데 1. topic테이블의 author_id와 author테이블의 id를 빼고 보고싶다면? 2. 1의 결과이지만, topic테이블의 id열을 topic_id로 나타내고 싶다면? 아래와 같이 입력하면 된다. 2022. 8. 5.