VirtualDever
close
프로필 배경
프로필 로고

VirtualDever

  • Root (748) N
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (124)
      • DirectX (2)
      • Unity (87)
      • Unreal (16)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (31)
    • DevLog (111)
    • LifeLog (307) N
      • book (126)
      • Review (4)
      • Workout (27) N
      • Finance (20)
    • SideProjects (35)
      • N Job (33)
      • Youtuber (2)
  • 홈
  • 태그
  • 방명록

백준 11718번: 그대로 출력하기

using System; class Program { static void Main(string[] args) { while (true) { string input = Console.ReadLine(); if (string.IsNullOrEmpty(input) == true) break; Console.WriteLine(input); } } } 문제 출처 https://www.acmicpc.net/problem/11718 11718번: 그대로 출력하기 입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시 www.acmicpc.net

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 2754번: 학점계산

using System; class Program { static void Main(string[] args) { string stringScore = Console.ReadLine(); float score = 0; switch (stringScore) { case "A+": score = 4.3f; break; case "A0": score = 4.0f; break; case "A-": score = 3.7f; break; case "B+": score = 3.3f; break; case "B0": score = 3.0f; break; case "B-": score = 2.7f; break; case "C+": score = 2.3f; break; case "C0": score = 2.0f; brea..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 2744번: 대소문자 바꾸기

using System; class Program { static void Main(string[] args) { string word = Console.ReadLine(); char[] wordArray = word.ToCharArray(); string result = ""; foreach (char c in wordArray) { if (Char.IsLower(c) == true) { string s = c.ToString().ToUpper(); result += s; } else if (Char.IsUpper(c) == true) { string s = c.ToString().ToLower(); result += s; } } Console.WriteLine(result); } } 문제 출처 htt..

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 2743번: 단어 길이 재기

using System; class Program { static void Main(string[] args) { string word = Console.ReadLine(); Console.WriteLine(word.Length); } } 문제 출처 https://www.acmicpc.net/problem/2743 2743번: 단어 길이 재기 알파벳으로만 이루어진 단어를 입력받아, 그 길이를 출력하는 프로그램을 작성하시오. www.acmicpc.net

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 11654번: 아스키 코드

using System; class Program { static void Main(string[] args) { string ascii = Console.ReadLine(); char[] c = ascii.ToCharArray(); int code = (int)c[0]; Console.WriteLine(code); } } 문제 출처 https://www.acmicpc.net/problem/11654 11654번: 아스키 코드 알파벳 소문자, 대문자, 숫자 0-9중 하나가 주어졌을 때, 주어진 글자의 아스키 코드값을 출력하는 프로그램을 작성하시오. www.acmicpc.net

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms

백준 7287번: 등록

using System; class Program { static void Main(string[] args) { Console.WriteLine("49"); Console.WriteLine("ddayin"); } } 문제 출처 https://www.acmicpc.net/problem/7287 7287번: 등록 첫 줄에 자신이 맞은 문제의 수, 둘째 줄에 아이디를 출력한다. www.acmicpc.net

  • format_list_bulleted ComputerScience/Coding Test
  • · 2022. 11. 12.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • navigate_next
공지사항
  • 개인 포트폴리오 [Division Like] 소개
  • 디스코드 [개발일지 공유하기] 서버에 초대 드립니다.
  • 게임 외주 개발 합니다.
  • Vritual Dever의 주인장은 누구입니까
전체 카테고리
  • Root (748) N
    • ComputerScience (52)
      • Coding Test (27)
      • Algorithm (2)
      • Math (3)
      • Physics (3)
    • Language (62)
      • C# (18)
      • C (2)
      • C++ (1)
      • English (29)
      • Python (5)
      • Lua (4)
    • Engine (124)
      • DirectX (2)
      • Unity (87)
      • Unreal (16)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (31)
    • DevLog (111)
    • LifeLog (307) N
      • book (126)
      • Review (4)
      • Workout (27) N
      • Finance (20)
    • SideProjects (35)
      • N Job (33)
      • Youtuber (2)
최근 글
인기 글
최근 댓글
태그
  • #1
  • #ㅗ
  • #ㅂㅗ
  • #부
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바