박민영

@1030pmy

90 Points 1 Followers

16 Posts

0 Answers

User has not added any information in their about section.

박민영 · 2 years ago

자바 9주차 과제

일부는 구글링 했음 import java.util.ArrayList; import java.util.Arrays; public class Account1 extends Account { private String name; int i=0; ArrayList<Transaction> transact...

박민영 · 2 years ago

자바 7주차 과제

import java.util.*; public class Course { private String courseName; private String[] students=new String[100]; private int numberOfStudents; public Course(String courseName...

박민영 · 2 years ago

자바 6주차 과제

둘다 맡겼음 import java.util.Scanner; public class LinearEquation { private int a,b,c,d,e,f; public LinearEquation(int a, int b, int c, int d, int e, int f) { this.a = a...

박민영 · 2 years ago

코드업 C++ 기초 100제 [기초-데이터형][기초-출력변환]

#include <iostream> using namespace std; int main(){ unsigned int n; cin >> n; cout << n; return 0; } #include <iostream> using namespace std; int main(){...

박민영 · 2 years ago

자바 4주차 과제

(구글링 했음) import java.util.*; public class palindrome { public static void main(String[] args) { System.out.println("Enter a number : "); Scanner input = new Scanner(Sys...

박민영 · 2 years ago

자바 5주차 과제

(구글링했음) import java.util.*; public class pivot { public static void main(String[] args) { System.out.print("Enter the number of elements: "); Scanner input=new Scanner(Syste...

박민영 · 2 years ago

자바 3주차 과제

Practice #1 Display pyramid. Write a program that prompts the user to enter an integer from 1 to 15 and displays a pyramid, as shown in the following sample run (1부터 15까지의 숫자를 입력으...

박민영 · 2 years ago

코드업 C++ 기초 100제 [기초-입출력]

#include <iostream> using namespace std; int main(){ int n; cin>>n; cout<<n; return 0; } 1011 #include <iostream> using namespace std; int main(){ char x;...

박민영 · 2 years ago

코드업 C++ 기초 100제 [기초-출력]

#include <iostream> using namespace std; int main() { cout<<"Hello"; return 0; } #include <iostream> using namespace std; int main(){ cout<&lt...

박민영 · 2 years ago

명품 C++ 프로그래밍 7장 연습문제

7-1 (1) #include <iostream> #include <string> using namespace std; class Book { string title; int price, pages; public: Book(string title = "", int price = 0, int p...

박민영 · 2 years ago

명품 C++ 프로그래밍 6장 연습문제

6-1 (1) #include <iostream> #include <string> using namespace std; int add(int a[], int b) { int n=0; for (int i = 0; i < b; i++) n += a[i]; return n; } int add(int a[]...

박민영 · 2 years ago

명품 C++ 프로그래밍 5장 연습문제

5-1 #include <iostream> #include <string> using namespace std; class Circle { int radius; public: Circle() { this->radius = 1; } Circle(int r) { this->radius = r; } vo...

박민영 · 2 years ago

명품 C++ 프로그래밍 4장 연습문제

4-1 #include <iostream> using namespace std; int main() { int *p = new int[5]; int sum = 0; double m=0.0; cout << "정수 5개 입력>> "; for (int i = 0; i <...

박민영 · 2 years ago

명품 C++ 프로그래밍 3장 연습문제

3-1 #include <iostream> using namespace std; class Tower { public: Tower(); Tower(int input); int getHeight(); private: int meter; }; int main() { Tower myTower; Tower seoulTow...

박민영 · 2 years ago

명품 C++ 프로그래밍 2장 연습문제

2-1 #include <iostream> using namespace std; int main() { for (int i = 1; i < 101; i++) { cout << i << '\t'; if (i % 10 == 0) cout << endl; } } 2-2 #incl...

박민영 · 2 years ago

자바 2주차 과제

Practice #1 Write a program that reads an integer between 0 and 1000 and multiplies all the digits in the integer. (0부터 1000까지 중 임의의 수를 입력 받아, 각 자리 숫자를 곱하는 프로그램을...

Loading More Content