본문 바로가기

W3 Schools C, C++

(5)
04.연산자 C++ Operators (w3schools.com) C++ Operators C++ Operators C++ Operators Operators are used to perform operations on variables and values. In the example below, we use the + operator to add together two values: Although the + operator is often used to add together two values, like in the example abov www.w3schools.com 이번에는 C, C++ 그런거 없이 그냥 설명하겠다. 더하기 빼기 뭐 그런건 다 알것이니 패스. %는 나눗셈의 나머지이고, ++과 --는 값에서..
03.입출력 C++ User Input (w3schools.com) C++ User Input C++ User Input C++ User Input You have already learned that cout is used to output (print) values. Now we will use cin to get user input. cin is a predefined variable that reads data from the keyboard with the extraction operator (>>). In the following exa www.w3schools.com #include using namespace std; int main() { int x, y; int sum; cout > x; cout ..
02.변수 선언 C++ Variables (w3schools.com) C++ Variables C++ Variables C++ Variables Variables are containers for storing data values. In C++, there are different types of variables (defined with different keywords), for example: int - stores integers (whole numbers), without decimals, such as 123 or -123 double www.w3schools.com C++ #include using namespace std; int main() { int myNum = 5; double myFloatNum..
01.Hello World C++ Tutorial (w3schools.com) C++ Tutorial C++ Tutorial Examples in Each Chapter Our "Try it Yourself" editor makes it easy to learn C++. You can edit C++ code and view the result in your browser. Example #include using namespace std; int main() { cout
W3 스쿨의 C, C++ 따라하기 멀캠 수료한지 벌써 대략 2주쯤 지났고, 일단 SAFFY 지원서 내긴 했는데 솔직히 될지 어떨지는 모르겠고 가만히 손 놓고 있기는 좀 불안해서 지금 하도 안써서 다 까먹은 C언어, C++을 다시 공부해서 포스팅해볼까 한다. W3 사이트를 교과서 삼아 진행해볼것이다. W3Schools Online Web Tutorials 근데 사실 C 뿐만 아니라 java도 벌써 많이 까먹었다. 아무리 배우고 배우고 아무리 무언가를 만들어도 뒤돌아서면 순식간에 다 까먹는다. 네이버 코딩 테스트도 지원했다가 1문제도 못 풀고 탈락했다. 문제들은 전부 어떻게 풀어야할지, 어떤 문법을 이용해야할지 다 방법은 알겠는데 정작 코드를 1줄도 못 짜서 망해버렸다. 난 애초에 이런 IT관련 시험들을 인터넷, 책 없이 풀라는게 이해가 안..