• LF몰 이벤트
  • 파일시티 이벤트
  • 서울좀비 이벤트
  • 탑툰 이벤트
  • 닥터피엘 이벤트
  • 아이템베이 이벤트
  • 아이템매니아 이벤트
  • 통합검색(830)
  • 리포트(710)
  • 시험자료(58)
  • ppt테마(30)
  • 논문(13)
  • 서식(10)
  • 자기소개서(5)
  • 방송통신대(4)

"public texts" 검색결과 1-20 / 830건

  • 한글파일 [배재대] 모바일 프로그래밍 1학기 중간고사 시험문제 풀이소스
    .*; public class MainActivity extends Activity { TextView text1,text2; EditText edit1; RadioGroup rGroup1 ... = (TextView) findViewById(R.id.textView1); text2 = (TextView) findViewById(R.id.textView2); edit1 = ... class MainActivity extends Activity { EditText edit1, edit2; TextView text,textResult; Button btnAdd
    리포트 | 9페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.20
  • 파워포인트파일 클라우드 컴퓨팅 창업 발표 프로젝트
    85% Insert the text Insert the text 90% Insert the text Insert the text Media Public Relation Media ... Relation Media Public Relation 70% Insert the text Insert the text 80% Insert the text Insert the text ... Public Relation Media Public Relation {nameOfApplication=Show}
    리포트 | 20페이지 | 1,000원 | 등록일 2020.06.03
  • 워드파일 Visual studio windows form with simple calculator 구현
    using System.Threading.Tasks; using System.Windows.Forms; using System.IO; namespace CalculatorWFP { public ... partial class Form1 : Form { public Form1() { InitializeComponent(); } Private btnPlus_Click와 btnMinus_Click에서 ... ); result2 = int.Parse(textBox2.Text); result3 = result1 + result2; label3.Text = "+"; label1.Text =
    리포트 | 8페이지 | 1,000원 | 등록일 2021.04.22
  • 한글파일 생능 Csharp 프로그래밍 입문 컨트롤 8.7 연습문제 풀이
    ; using System.Threading.Tasks; using System.Windows.Forms; namespace _12 { public partial class Form1 ... : Form { public Form1() { InitializeComponent(); } private void radioButton1_CheckedChanged(object sender ... , EventArgs e) { var r = double.Parse(textBox1.Text) - double.Parse(textBox2.Text); textBox3.Text = r.ToString
    리포트 | 6페이지 | 1,000원 | 등록일 2021.05.31
  • 워드파일 데이터 사이언티스트 인턴(Data Scientist Intern)취업 합격을 부르는 영문이력서 및 자소서 핵심 문장(한국어 포함)
    developed a scalable Record Linkage system that filtered, analyzed, and reconciled entries from large publicly ... topic modeling and classify text into topics for further classification. ... Utilized Text mining techniques (Latent Dirichlet Allocation, tm, topic models) to form topics using
    자기소개서 | 5페이지 | 3,000원 | 등록일 2022.05.18
  • 한글파일 체크박스,라디오버튼 컨트롤을 사용하여 설문에 응답하기
    체크박스, 라디오버튼 컨트롤을 사용하여 설문에 응답하기 Public Class Form1 Private Sub btrSelect_Click(sender As Object, e As ... EventArgs) Handles btrSelect.Click Dim Disp_Text As String Disp_Text = lblName.Text & txtName.Text Disp_Text ... Disp_Text = Disp_Text & rdWoman.Text End If Disp_Text = Disp_Text & Chr(13) & "좋아하는색: " If checkRed.Checked
    리포트 | 4페이지 | 2,500원 | 등록일 2021.01.24
  • 파워포인트파일 아름다운 가게 발표 PPT
    Motivation Add text Add text 되살림 정신 '순환' 참여와 변화 '실천' 그물코 정신 '관계' Beautiful Coffee in Fair Trade Other ... PICTURE OF THE BEAUTIFUL STORE 공익성과 전문성을 갖춘 세계적 수준의 NGO Vision of Beautiful store Publicness 공익성 비영리
    리포트 | 11페이지 | 1,000원 | 등록일 2022.02.22
  • 한글파일 인하대학교 사회인프라공학과 컴퓨터프로그래밍 중간고사 레포트
    Public Function GetIncomeTax(ByVal earnedINC As Double, _ Optional ByVal bNational As Boolean = True) ... Sub * Form 코딩창의 GetIncomeTax Public Function GetIncomeTax(ByVal earnedINC As Double, Optional ByVal bNational ... GetPensionDeduction, GetIncomeDeduction, GetDonationDeduction * ModuleTaxFunctions의 함수프로그램 GetPensionDeduction Public
    리포트 | 11페이지 | 1,500원 | 등록일 2020.05.21
  • 워드파일 건국대학교 컴퓨터공학부 Java프로그래밍_12주차_랩실습보고서
    }; //check itemListenr JCheckBox[] check = new JCheckBox[2]; boolean allChecked = false; JTextField text1 ... ; public Lab2() { this(" "); } public Lab2(String title) { super(title); this.setSize(500,500); this.setLocationRelativeTo ... .*; @SuppressWarnings("serial") public class Lab1 extends JFrame implements ItemListener{ String[] data
    리포트 | 7페이지 | 1,500원 | 등록일 2022.07.06
  • 한글파일 안드로이드 소켓
    method stub Log.i(tag, "Network Info"); TextView mTextAnswer = (TextView) findViewById(R.id.answer_text ... ); TextView mTextAnswer2 = (TextView) findViewById(R.id.answer_text2); // Emulator & Device cMgr = (ConnectivityManager ... class SimpleSocket extends Activity{ public void onCreate(Bundle savedInstanceState) { super.onCreate
    리포트 | 13페이지 | 2,000원 | 등록일 2020.11.23
  • 워드파일 최적의 문자열 편집(자바)
    text[];// 정수로 이루어진 2차원 배열을 출력하는 함수// 배열, 행, 열을 입력받아서 2중 for문을 통해 모든 원소를 출력public void IntArrayPrint( ... 프로그램 소스_1 (편집 함수들을 포함하는 Edit 클래스)// Edit 클래스 선언public class Edit {// 최적 편집 순서로 편집되는 중간 문자열이 저장되는 배열String ... System.out.println(" ");}// string 타입으로 이루어진 2차원 배열을 출력하는 함수// 배열, 행, 열을 입력받아서 2중 for문을 통해 모든 원소를 출력public
    리포트 | 15페이지 | 3,000원 | 등록일 2021.03.01
  • 한글파일 인하대학교 사회인프라공학과 컴퓨터프로그래밍 퀴즈1
    = 10000 Public Function GetFixedLengthValue(ByVal valueo As Double, Optional lengtho As Integer = 15 ... = Format(totalINC - sum공적지출, "#,0") End Sub * Module Module PublicFunctions Public Const 만원 As Double ... (22쪽) Return Space(lengtho - lenValue) & strValue '문자 합 End Function End Module Module TaxFunctions Public
    리포트 | 7페이지 | 1,000원 | 등록일 2020.10.22
  • 파워포인트파일 6. 씨샵 프로그래밍 (텍스트RPG 6)
    프로그래밍 텍스트 RPG 게임 만들기 (6) C# 텍스트 RPG 만들기 using System; using System.Collections.Generic; using System.Text ... RPG C# 텍스트 RPG 만들기 Class Character.cs using System; using System.Collections.Generic; using System.Text ... monster.IsAive()) { monster.Attack(mPlayer); } else { Console.Wystem.Collections.Generic; using System.Text
    시험자료 | 12페이지 | 2,000원 | 등록일 2021.12.02
  • 워드파일 건국대학교 컴퓨터공학부 Java프로그래밍_13주차_랩실습보고서
    package week13; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Font; import java.text.SimpleDateFormat ... class ThreadFrame extends JFrame{ public ThreadFrame(){ this(" "); } public ThreadFrame(String title ... java.util.Calendar; import javax.swing.JFrame; import javax.swing.JLabel; @SuppressWarnings("serial") public
    리포트 | 7페이지 | 1,500원 | 등록일 2022.07.06
  • 파워포인트파일 8. 씨샵 프로그래밍 (텍스트RPG 8)
    안들어옵니다 ^^ 실행 C# 텍스트 RPG 만들기 Class Player using System; using System.Collections.Generic; using System.Text ... } C# 텍스트 RPG 만들기 Class GameController using System; using System.Collections.Generic; using System.Text ... } } } } C# 텍스트 RPG 만들기 Class Character using System; using System.Collections.Generic; using System.Text
    시험자료 | 13페이지 | 2,000원 | 등록일 2021.12.02
  • 한글파일 운영체제 동기화
    . - code using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 삭제하는 연산을 수행한다, - code using System; using System.Collections.Generic; using System.Linq; using System.Text ... -code using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading
    리포트 | 11페이지 | 1,000원 | 등록일 2019.07.03
  • 한글파일 자바 GUI로 구현한 다이어리(소스코드, 보고서 포함)
    스케줄 입력한 내용을 텍스트에 저장하고 내용을 갱신하는 함수 public JLabel addJLabel(String text, Color color) 라벨을 추가ng = new JPanel ... jbutton_memo_modify.addActionListener(this); //수정버튼 리스너 추가 jbutton_memo_delete.addActi{ JButton btn = new JButton(); btn.setText(text ... 날이 언제인지 알아옴 public int getMonth() 현재 월을 갱신하는 함수 public int getToday() 현재의 날을 갱신하는 함수 public int getYear
    리포트 | 19페이지 | 3,000원 | 등록일 2020.11.09
  • 워드파일 방통대 컴퓨터과학과 jsp프로그래밍_기말_과제물형
    아이디< type=”text” name=”id> 비밀번호 < =”register_form.jsp”> ... } public int getAge( ) { return age; } public void setName(String name) //(4) 데이터타입이 일치하는 파라미터 1개를 가짐 ... public class MemberInfo { // (1) JSP 프로그래밍의 필수적인 자바빈 클래스 생성 private String name; private int age; //
    방송통신대 | 7페이지 | 3,000원 | 등록일 2024.05.03
  • 한글파일 방송대 컴퓨터과학과 JSP프로그래밍 짝수학번 기말평가(만점)
    ① 필요한 변수는 private or public으로 선언가능하다. ② setter 메소드로 public void setName() { return name; }을 사용할 수 있다. ... 참고자료 524p 는 EL 문법을 무시되어 text로 처리된다. ③ 강의록 12강 9p, 요청 파라미터를 출력하는 것으모 param은 표현 언어의 내장 객체이다. ④ 강의록 12강 ... ① 기본형식은 ${표현식}이며 스크립트 요소 밖에서 사용된다. ② 는 EL을 text로 처리한다. ③ 는 ${ param.id }로 표현할 수 있다. ④ ${paramValues.name
    방송통신대 | 6페이지 | 5,000원 | 등록일 2021.01.02
  • 워드파일 미국 유학 아이비리그 컬럼비아 대학교 극장 경영 석사 Master 합격 writing sample (문항 3)
    media is more effective at enhancing vivacity and communicative power than traditional marketing using text ... Crowd funding can be a means of publicity as well as the source of the production cost. ... The analysis shows that the percentage of the budget allotted to public relations and marketing was only
    자기소개서 | 2페이지 | 4,900원 | 등록일 2023.03.12
  • 레이어 팝업
AI 챗봇
2024년 05월 29일 수요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
3:28 오전
New

24시간 응대가능한
AI 챗봇이 런칭되었습니다. 닫기