1. 비쥬얼 스튜디오 파일을 제공하는 MICROSOFT 공식 사이트 접속 https://visualstudio.microsoft.com/ko/downloads/?rr=https%3A%2F%2Fdocs.microsoft.com%2Fko-kr%2Fvisualstudio%2Finstall%2Finstall-visual-studio%3Fview%3Dvs-2019 visual studio 다운로드 | IDE, Code & Team Foundation Server | Visual Studio Visual Studio Community, Professional 및 Enterprise를 다운로드하세요. 지금 무료로 Visual Studio Code 또는 Team Foundation Server를 체험해 보세요. vis..
#include using namespace std; struct Account { char accID[20]; //계좌번호 char secID[20]; //비밀번호 char name[20]; //이름 int balance; //잔액 }; int main(void){ Account man = { "123", "0000", "홍길동", 10000 }; cout
#include /* using std::cout; using std::endl; using std::cin; */ #define _CRT_SECURE_NO_WARNINGS using namespace std; const int name_LENGTH = 20; /* ===========swap 함수=============== void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } void swap(char *a, char *b){ int temp; temp = *a; *a = *b; *b = temp; } */ /*=============직육면체 크기공식 함수========== int BoxVolume(int length, int wi..