카테고리 없음

ss

컴공 2013. 4. 9. 12:40
반응형

// 1_1_quiz.cpp : Defines the entry point for the application.
//

#include "stdafx.h"

int APIENTRY WinMain(HINSTANCE hInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR     lpCmdLine,
                     int       nCmdShow)
{
 // TODO: Place code here.
 int n  = 5;
 int n2 = 6;
 int n3  = n + n2;
 
 return 0;
}

 

 

반응형