top of page

소스 코드 제출

공개·회원 50명

20250618

/*

#include <stdio.h>

#include <stdlib.h>


int main()

{

printf("Hello world!\n");

return 0;

}

*/

/*

#include <stdio.h>

#include <string.h>

int main()

{

char str[201]={};

int i;

gets(str);

for(i=0;str[i]!=NULL;i++)

{

if('d'<=str[i]&&'z'>=str[i])

{

printf("%c",str[i]-3);

}

else if(str[i]=='a'||str[i]=='b'||str[i]=='c')

{

printf("%c",str[i]+23);

}

else if('A'<=str[i]&&'W'>=str[i])

{

printf("%c",str[i]-3);

}

else if('X'==str[i]||'Y'==str[i]||'Z'==str[i])

{

printf("%c",str[i]+23);

}

else

{

printf(" ");

}

}

return 0;

}

*/

/*

#include <stdio.h>

#include <string.h>

int main()

{

char str[201]={};

int i;

gets(str);

for(i=0;str[i]!=NULL;i++)

{

if('a'<=str[i]&&'w'>=str[i])

{

printf("%c",str[i]+3);

}

else if('x'==str[i]||'y'==str[i]||'z'==str[i])

{

printf("%c",str[i]-23);

}

else if('A'<=str[i]&&'W'>=str[i])

{

printf("%c",str[i]+3);

}

else if('X'==str[i]||'Y'==str[i]||'Z'==str[i])

{

printf("%c",str[i]-23);

}

else

{

printf(" ");

}

}

return 0;

}

*/

/*

#include <stdio.h>

#include <string.h>

int main()

{

char str[100001]={};

int i,n, open=0, close=0;

scanf("%s",str);

n=strlen(str);

for(i=0;i!=n;i++)

{

if(str[i]=='(')

{

open+=1;

}

else if(str[i]==')')

{

close+=1;

}

}

printf("%d %d",open,close);

return 0;

}

*/

/*

#include <stdio.h>

int main()

{

int arr[51]={};

int i,n;

scanf("%d",&n);

for(i=1;i<=n-1;i++)

{

scanf("%d",&arr[i]); //unfinished

}

for(i=1;i<=n-1;i++)

{

printf("%d",arr[i]);

}

return 0;

}

*/

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