top of page

소스 코드 제출

공개·회원 52명

/*

#include <stdio.h>


int main()

{

printf("Hello, world!");

return 0;

}

*/

/*

#include <stdio.h>


int main()

{

printf("Hello, World!");

return 0;

}

*/

/*

#include <stdio.h>


int main()

{

printf("Hello,\nWorld!");

return 0;

}

*/


//#include <stdio.h>

//

//int main()

//{

// printf("\"c:\\test\"");

// return 0;

//}


/*

정수형

int %d <<<<<<

long long int %lld 1

실수형

float %f

double %lf <<<<<<


문자형

char %c

*/


/*

#include<stdio.h>


int main()

{

int a, b, x, label;

scanf("%d %d", &x, &a);

printf("%d", x+a);

// x = 100;

//

// printf("%d\n", x);

//

// x = x + 200;

//

// printf("%d", x);

return 0;

}

*/

/*

#include<stdio.h>


int main()

{

int m;

scanf("%d", &m);

printf("%d", m);

return 0;

}

*/

/*

#include<stdio.h>


int main()

{

char m;

scanf("%c", &m);

printf("%c", m);

return 0;

}

*/


#include<stdio.h>


int main()

{

double m;

scanf("%lf", &m);

printf("%lf", m);

return 0;

}

11회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page