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

VirtualDever

  • Root (739) 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 (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130) N
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
  • 홈
  • 태그
  • 방명록

백준 11382번: 꼬마 정민

using System; class Program { static void Main(string[] args) { string stringInput = Console.ReadLine(); string[] arrayInput = stringInput.Split(' ', StringSplitOptions.None); long[] intResult = new long[3] {0, 0, 0}; for (int i = 0; i < 3; i++) { intResult[i] = System.Convert.ToInt64(arrayInput[i]); } long total = 0; for (int i = 0; i < 3; i++) { total += intResult[i]; } Console.WriteLine(total..

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

백준 9086번: 문자열

using System; class Program { static void Main(string[] args) { string stringNumber = Console.ReadLine(); int intNumber = System.Convert.ToInt32(stringNumber); string[] result = new string[intNumber]; for (int i = 0; i < intNumber; i++) { string testCase = Console.ReadLine(); char[] array = testCase.ToCharArray(); result[i] = array[0].ToString() + array[array.Length - 1].ToString(); } foreach (s..

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

백준 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
  • navigate_before
  • 1
  • ···
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • navigate_next
공지사항
  • 게임 외주 개발과 게임 개발 과외 합니다.
  • Vritual Dever의 주인장은 누구입니까
전체 카테고리
  • Root (739) 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 (120)
      • DirectX (2)
      • Unity (84)
      • Unreal (15)
      • OpenCV (5)
      • WPF (4)
      • Roblox (4)
    • AI (12)
      • LLM (9)
    • Server (8)
      • ASP.NET Core (1)
      • Database (4)
    • IDE & Tool (30)
    • DevLog (108)
    • LifeLog (130) N
      • book (126)
      • Review (4)
      • Workout (26)
      • Finance (20)
    • SideProjects (33)
      • N Job (33)
      • Youtuber (2)
최근 글
인기 글
최근 댓글
태그
  • #ㅂㅗ
  • #ㅗ
  • #부
  • #1
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바