본문 바로가기

분류 전체보기

(88)
WINDOWS API PPT
[C#] 과제 2 - 마방진 이해하기 과제 2 홀수 마방진 using System; using Com.JunBo.Logic; namespace Com.JunBo.Basic { public class Program { public static void Main() { IMagic odd = new OddMagicSquare(5); odd.Make(); odd.Print(); } } } namespace Com.JunBo.Logic { public interface IMagic { void Print(); void Make(); } } namespace Com.JunBo.Logic { public class OddMagicSquare : IMagic { private int[,] mabang; public OddMagicSquare(int n)..
[C#] 과제 1 - 허수의 표현 허수 표현 using System; using Com.JungBo.Maths; namespace Com.JungBo.Basic { public class Program { public static void Main(string[] args) { Z z1 = new Z(3, 2); Z z2 = new Z(3, -5); Console.WriteLine(z1); Console.WriteLine(z2); } } } namespace Com.JungBo.Maths { public class Z { private double x,y; public Z(double x, double y) { this.x = x; this.y = y; } public Z() : this(0.0, 0.0) { } public overri..
기독교의 이해 9장 ppt 기독교의 이해 강의 발표용 ppt 입니다.
비주얼 스튜디오 Express 에서 afxres.h 에러가 났을 때! 1>------ 빌드 시작: 프로젝트: first test, 구성: Debug Win32 ------1> first test.cpp1>resource.rc(10): fatal error RC1015: cannot open include file 'afxres.h'.1> ========== 빌드: 성공 0, 실패 1, 최신 0, 생략 0 ========== 이런 오류가 날 경우 #include "afxres.h"를// #include "afxres.h"#include #define IDC_STATIC (-1) 로 수정해 주세요. 실행되기도 하더군요. afxres.h 헤더가 MFC 라이브러리의 들어가 있는데 Express 에선 MFC 라이브러리를 지원안한다네요.대체로 winresrc.h를 사용한다네요.
Visual Studio 2015 Ultimate Preview 우선 다운로드 사이트 http://www.microsoft.com/en-us/download/details.aspx?id=44934 .NET(닷넷) 스택을 오픈소스화하고 리눅스 및 맥 OS 플랫폼에서의 .NET 지원을 추가하는 등 크로스 플랫폼 개발자 지원을 확대했다네요!안드로이드 에뮬레이터도 가능하다는군요. 비주얼 스튜디오의 무료 버전인 비주얼 스튜디오 커뮤니티 2013도 발표했다네요.비주얼 스튜디오 커뮤니티 2013은 비주얼 스튜디오의 전체 확장 기능을 포함한 모든 에디션을 무료로 제공해, 모바일 기기와 데스크톱에서부터 웹 및 클라우드 서비스까지 모든 플랫폼을 지원한다네요. http://www.visualstudio.com/ko-kr/downloads/ 에서 받아보세요! 윈7이상에서 가능한것같습니다.
6장까지 실습 시험범위 299쪽까지
xml 5주차 FRAME, IFRAME , FORM 등 공부했습니다.