블로그
-
[utils] TTS 구현
; using System.Data; using System.Drawing; using System.Linq; using System.Speech.Synthesis; using System.Text ; using System.Threading.Tasks; using System.Windows.Forms; namespace TTS_Sample { public partial class
blog.naver.com · 2025.04.14
-
01. C++의 표준 라이브러리는 std 안에 다 있다
이거 맨날 쓰기 귀찮으니까 #include 밑에 꼭 써줘야 하는 것은 using namespace std; namespace는 말그대로 '이름 공간'으로 중복되는 것을 이 공간에 넣는
blog.naver.com · 2025.01.09
-
기초 C++ 독학 (실행 출력 결과 값이 다르다?)
#include int main() { using namespace std; char i; cout<>i; switch(i) { cas.......
blog.naver.com · 2022.07.12
-
[끄적]프로그래머스 스택/큐 2번 main
#include #include #include using namespace std; vector solution(vector progresses, vector speeds);
blog.naver.com · 2021.11.07
-
아무렇게나 c# 정리 노트- [1]
sizeof, static, struct, switch, typeof, void, while C++(19개) : bool, catch, class, false, finally, namespace , new, private, protected, explicit, operator, public,this, throw, true, try, using, virtual, volatile
blog.naver.com · 2021.07.18
-
20-C3001. [C++, Console] 파일이름 한번에 바꾸기
) 파일로 바꾸려고 하니, 확장성이 부족해짐을 느껴짐 - C++ 로 빨리 제작하는것이 좋을것으로 판단 함 #include #include #include #include using namespace std; int main(){string sName = "Engine"; string chDir = ".
blog.naver.com · 2020.07.23
-
프로그래머스 LEVEL2 피보나치수열문제
#include #include using namespace std; int solution(int n) { long long *.......
blog.naver.com · 2020.01.14
-
C++ using 사용법
어디 namespace에 접근 할 건지 결정하는 연산자 namespace 안에 또 다른 namespace 선언이 가능하다. 생성과 소멸은 변수와 동일하다. ,int d) { return 0; } } a::function(); using a::function; function(); a::function2(); using namespace
blog.naver.com · 2019.02.28
-
(c#학원)WPF Command 패턴, 데이터바인딩 실습예제
WPF Command 패턴, 데이터바인딩 실습예제 [실행화면] [Emp.cs] namespace CommandExam { class Emp { public string Ename { System; using System.Windows.Input; namespace CommandExam { class RelayCommand : ICommand { #region
blog.naver.com · 2018.12.21
-
프로그래머스 LEVEL.1 약수의 합
#include #include using namespace std; int solution(int n) { int answer = 0; for(int i=1;i
blog.naver.com · 2018.09.15
블로그 결과 더보기 →