top of page

소스 코드 제출

공개·회원 50명

johnjohn201283
johnjohn201283

250718

/*

#include <stdio.h>


int main()

{

printf("Hello");

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("'Hello'");

return 0;

}

*/


/*

#include <stdio.h>


int main()

{

printf("\"Hello World\"");

return 0;


}

*/


/*

#include <stdio.h>


int main()

{

printf("\"!@#$%%^&*()\"");

return 0;


}

*/


/*

#include <stdio.h>


int main()

{

printf("\"C:\\Download\\hello.cpp\"");

return 0;



}

*/


/*

정수형(1,2, -1, -2)

int %d

long long int %lld


실수형(1.7, 5.6)

float %f

double %lf


문자형(ASCII)

char %c

*/

/*

#include<stdio.h>


int main() {

int x, y, z, a, b, c;

int imSoHungray;


// x = 100;

// x = x + 200;


scanf("%d", &x);


printf("%d", x);


return 0;

}

*/



/*

#include<stdio.h>


int main()

{

int n;

scanf("%d", &n);

printf("%d",n);


return 0;

}

*/



/*

#include<stdio.h>


int main()

{

char x;

scanf("%c",&x);

printf("%c",x);




}

*/


/*

int main()

{

float x;

scanf("%f", &x);

printf("%f", x);

}

*/


/*

#include<stdio.h>


int main()

{

int a, b;

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

printf("%d %d", a, b);

}

*/


/*

#include<stdio.h>


int main()

{

char x, y;

scanf("%c %c", &x,&y);

printf("%c %c",y,x);

}

*/



/*

#include<stdio.h>


int main()

{

float x;

scanf("%f", &x);

printf("%.2f",x);

}

*/



/*

#include<stdio.h>


int main()

{

int a;

scanf("%d",&a);

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

}

*/

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