• 통큰쿠폰이벤트-통합
  • 통합검색(113)
  • 리포트(99)
  • 시험자료(14)

"format string" 검색결과 1-20 / 113건

  • [운영체제 보안]포맷스트링(format string)공격에 대한 이해와 실습
    인천포맷스트링(format string)공격에 대한 이해와 실습.hwp포맷스트링(format string)공격에 대한 이해와 실습.hwp포맷 스트링 버그(Format String Bugs ... )에대한 조사 및 실습포맷스트링(format string)공격에 대한 이해와 실습.hwp- 목 차 -Ⅰ.포맷 스트링 이란? ... 예를들어 해커가 다음과 같은 코드에 대해 입력을 “%s%s%s%s%s%s"와 같이 주었다고 하자.char buf[512];read(0, buf, 512);printf(buf);printf함수가
    리포트 | 24페이지 | 2,000원 | 등록일 2011.04.26 | 수정일 2015.02.09
  • 조선대학교 2022 1학기 컴퓨터네크워크 homework2 소스코드
    address: {0}{1}{2}:{3}:{4}:{5}/128".format(organization_block,subnet_identifier,final_string_slice1, ... = final_string.replace("-","")final_string_slice1 = final_string[0:4]final_string_slice2 = final_string ... (3, "FFFE")final_string = "-".join(split_strings)final_string = final_string.replace("F5","F7")final_string
    리포트 | 2페이지 | 3,000원 | 등록일 2022.09.08 | 수정일 2023.10.28
  • C++파일 핸들링 관련 함수조사 레포트
    FILE * stream, const char * format, ... );Write formatted data to streamWrites the C string pointed by ... format are formatted and inserted in the resulting string replacing their respective specifiers.After ... A single whitespace in the format string validates any quantity of whitespace characters extracted from
    리포트 | 12페이지 | 1,500원 | 등록일 2020.10.28 | 수정일 2020.10.29
  • 16. 씨샵 프로그래밍 (텍스트RPG 16)
    = null ) { Console.WriteLine( string .Format( {0}\t{1}\t{2} , i.ToString(), mInventroy[i].Name, string ... .Format( {0}\t{1}\t{2}\t{3}\t{4} , (i + 1).ToString(), mOriginalItemArr[i].Name, string .Format(mOriginalItemArr ... ( 번호 \t 이름 \t 설명 \t 판매가 ); for ( int i = 0; i mItemCount; i++) { Console.WriteLine( string .Format( {
    시험자료 | 11페이지 | 2,000원 | 등록일 2021.12.02
  • 8. 씨샵 프로그래밍 (텍스트RPG 8)
    monster.IsAive()) { Console.WriteLine( 승리 했습니다 . ); Console.WriteLine( string .Format( 골드 {0} / 경험치 { ... mName; // 멤버변수 유저 이름 protected int mHP; // 멤버변수 캐릭터 체력 protected int mMonsole.WriteLine( string .Format ... 보여주는 메서드 { ShowData(); Console.WriteLine( Level : + mLevel.ToString()); // 레벨 출력 Console.WriteLine( string
    시험자료 | 13페이지 | 2,000원 | 등록일 2021.12.02
  • 12. 씨샵 프로그래밍 (텍스트RPG 12)
    = null ) { Console.WriteLine( string .Format( {0}\t{1}\t{2} , i.ToString(), mInventroy[i].Name, string ... monster.IsAive()) { Console.WriteLine( 승리 했습니다 . ); Console.WriteLine( string .Format( 골드 {0} / 경험치 { ... 도망 ); Console.Write( 커맨드를 입력하세요 ); string input = Console.ReadLine(); int command; if (!
    시험자료 | 19페이지 | 2,000원 | 등록일 2021.12.02
  • 13. 씨샵 프로그래밍 (텍스트RPG 13)
    = null ) { Console.WriteLine( string .Format( {0}\t{1}\t{2} , i.ToString(), mInventroy[i].Name, string ... } } Console.Write( 사용할 아이템의 번호를 입력하세요 ); string input = Console.ReadLine(); int command = -1; if (! ... 아이템 private int mItemCount; // 플레이어 아이템 카운트 private const int INVENTORY_COUNT = 5; public Player ( string
    시험자료 | 12페이지 | 2,000원 | 등록일 2021.12.02
  • 파이썬(Python) 코딩 언어 문법정리
    print(date_string.format(변수1,변수2,변수3)3번 방법 # f-string 포맷year = 2019month = 10print(f"오늘은 {year}년 {month ... ------------# 문자열 포맷팅1번 방법print("오늘은 {}년 {}월 {}일입니다.".format(변수1,변수2,변수3)2번 방법#문자열 변수 선언 후 포맷팅date_string ... (name))print("나이는 {}살".format(age))print("국적은 {}".format(nationality))myself("코드잇", 1) # 기본값이 설정된 파라미터를
    리포트 | 20페이지 | 2,000원 | 등록일 2021.07.30
  • 11. 씨샵 프로그래밍 (텍스트RPG 11)
    monster.IsAive()) { Console.WriteLine( 승리 했습니다 . ); Console.WriteLine( string .Format( 골드 {0} / 경험치 { ... 종료 ); Console.Write( 커맨드를 입력하세요 ); // 유저의 입력을 받는 부분 string input = Console.ReadLine(); //char firstChar ... = char.Parse(input); // 아스키코드 ////char firstChar2 = input.ToCharArray()[0]; //if (string.IsNullOrEmpty
    시험자료 | 30페이지 | 2,000원 | 등록일 2021.12.02
  • 4. 씨샵 프로그래밍 (텍스트RPG 4)
    target) // 공격 { //if(mHP = 0) { return; } if (mHP 0) { Console.WriteLine( string .Format( {0}( 이 ) 가 ... void Main( string [] args) { GameController controller = new GameController(); controller.MainLoop() ... 도망 ); Console.Write( 커맨드를 입력하세요 ); string battleCommand = Console.ReadLine(); switch (battleCommand)
    시험자료 | 22페이지 | 2,000원 | 등록일 2021.12.02 | 수정일 2021.12.09
  • 14. 씨샵 프로그래밍 (텍스트RPG 14)
    .Format( {0}\t{1}\t{2} , i.ToString(), mOriginalItemArr[i].Name, string .Format(mOriginalItemArr[i]. ... 나가기 ); Console.Write( 커맨드를 입력하세요 ); string input = Console.ReadLine(); int command; if (! ... Info, mOriginalItemArr[i] .Value.ToString())) ); } Console.Write( 구매할 아이템의 번호를 입력하세요 ); string inputID
    시험자료 | 28페이지 | 2,000원 | 등록일 2021.12.02
  • 7. 씨샵 프로그래밍 (텍스트RPG 7)
    monster.IsAive()) { Console.WriteLine( 승리 했습니다 . ); Console.WriteLine( string .Format( 골드 {0} / 경험치 { ... bExit 가 true 라면 { break ; //break 를 진행 } } } // 플레이어 배틀 커맨드 메소드 private bool ProcessBattleCommand( string ... ; using System.Text; namespace TextRpg { class Character { protected string mName; // 멤버변수 유저 이름 protected
    시험자료 | 19페이지 | 2,000원 | 등록일 2021.12.02
  • C-프로그래밍 - 개인정보 입출력, 간단한 계산
    and prints input data with formatted string.① 프로그램 배경 :scanf 함수와 printf 함수를 활용해 학생 정보를 입력하는 프로그램을 만들었다 ... 1) Project 1-1 : Write a program that inputs your department, student ID, and student name from keyboard ... . printf 함수는 함수 호출 시 전달되는 문자열을 모니터에 출력하는 기능을 가진다. printf 함수안에 큰 따옴표로 이용해 문자열을 표현하고 \n을 사용하여 줄을 바꾼다. scanf
    리포트 | 4페이지 | 1,000원 | 등록일 2020.09.14
  • 15. 씨샵 프로그래밍 (텍스트RPG 15)
    .Format( {0}\t{1}\t{2}\t{3}\t{4} , (i + 1).ToString(), mOriginalItemArr[i].Name, string .Format(mOriginalItemArr ... 나가기 ); Console.Write( 커맨드를 입력하세요 ); string input = Console.ReadLine(); int command; if (! ... enum eShopCommand // 상점 열거형 { Buy = 1, Sell, Exit } class ShopController { Item[] mOriginalItemArr; string
    시험자료 | 16페이지 | 2,000원 | 등록일 2021.12.02
  • 9. 씨샵 프로그래밍 (텍스트RPG 9)
    monster.IsAive()) { Console.WriteLine( 승리 했습니다 . ); Console.WriteLine( string .Format( 골드 {0} / 경험치 { ... 종료 ); Console.Write( 커맨드를 입력하세요 ); // 유저의 입력을 받는 부분 string input = Console.ReadLine(); //char firstChar ... = char.Parse(input); // 아스키코드 ////char firstChar2 = input.ToCharArray()[0]; //if (string.IsNullOrEmpty
    시험자료 | 12페이지 | 2,000원 | 등록일 2021.12.02
  • LabView 기초 보고서 1주차
    문자열과 문자열함수프런트패널블록 다이어그램(와이어링)문자열과 numeric control을 블록 다이어그램에서 format into string으로 와이어링 해주고 포맷을 지정해준다 ... 그 후에 string length로 문자열의 길이를 구하고 indicator로 결과를 출력한다.연습 1-5.
    리포트 | 4페이지 | 2,500원 | 등록일 2020.10.25
  • 자바 뱅킹프로그램
    REPORT과제 1-뱅킹 시스템 개발하기-요구사항계좌가 있는 고객이 사용한다.고객 클래스에 계좌번호(string), 비밀번호(string), 잔액(int)을 저장할 수 있게 한다. ... "))if money > 0:user.balance += moneyprint("입금한 금액: {} 잔액: {}" .format(money, user.balance))else:print ... "잔액이 모자릅니다.")elif money < 0:print("잘못된 금액입니다.")else:user.balance -= moneyprint("출금한 금액: {} 잔액: {}" .format
    리포트 | 10페이지 | 2,000원 | 등록일 2021.04.10
  • 워드 카운팅 과제 작성 내용
    :str: The cleaned up string.""" ... Leading and trailing spaces should be removed afterpunctuation is removed.Args:text (str): A string.Returns ... top38wc = data_bi.takeOrdered(38, key=lambda (w,c): -c)print '\n'.join(map(lambda (w, c): '{0}: {1}'.format
    리포트 | 4페이지 | 2,500원 | 등록일 2021.09.20
  • 6. 씨샵 프로그래밍 (텍스트RPG 6)
    .Format( {0}( 은 ) 는 {1} 의 피해를 입었다 . , mName, realDamage.ToString())); if (mHP = 0) { Console.WriteLine ... 종료 ); Console.Write( 커맨드를 입력하세요 ); // 유저의 입력을 받는 부분 string command = Console.ReadLine(); switch (command ... 도망 ); Console.Write( 커맨드를 입력하세요 ); string battleCommand = Console.ReadLine(); int randval = mRand.Next
    시험자료 | 12페이지 | 2,000원 | 등록일 2021.12.02
  • 컴퓨터 구조 과제 4 - 소프트웨어학과
    precision) 2.0.1)character ‘2’ → 1Byte(8bits)이고 ascii 값이 50 -> 32+16+ 2 = 50-> 001100102)string "2"→ ... 2Bytes(16bits) -> char형의 배열인 string-> 0000000000110010integer 2 (32bits) 0000000000000000000000000000000103 ... format : Two-address instruction14 different operations → Number of bits for opcode = 4(2^4=16)13 registers
    리포트 | 5페이지 | 2,000원 | 등록일 2020.05.18 | 수정일 2020.05.22
  • 아이템매니아 이벤트
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 16일 월요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
3:57 오전
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대