top of page

소스 코드 제출

공개·회원 50명

250507

/*

#include <stdio.h>

int main(){

int x,i,c=0;

scanf("%d",&x);

for(i=1;i<=x;i++)

{

if(i%2==0)

{

c=c+i;

}

}

printf("%d",c);

return 0;

}

*/

/*

#include<stdio.h>

int main(){

int i,c=0,e[10]={0},f;

for(i=1;i<=9;i++)

{

scanf("%d",&e[i]);

}

for(i=1;i<=9;i++)

{

if(e[i]>c)

{

c=e[i];

f=i;

}

}

printf("%d\n",c);

printf("%d",f);

return 0;

}

*/

/*

#include<stdio.h>

int main()

{

char str[100]={};

scanf("%s",&str[0]);

if(str[0] == 'I' && str[1] == 'O' && str[2] == 'I' && str[3] == NULL)

{

printf("IOI is the International Olympiad in Informatics.");

}

else{

printf("I don't care.");

}

return 0;

}

*/

/*

#include <stdio.h>


int n, m;


long long int f(int n,int m)

{

return (long long int)n+m;

}


int main()

{

scanf("%d%d", &n, &m);

printf("%lld\n", f(n, m));

}

*/

/*

#include<stdio.h>

int main()

{

int i,a,x=0,y=1000,b[1001]={};

scanf("%d",&a);

for(i=1;i<=a;i++)

{

scanf("%d",&b[i]);

if(x<b[i])

{

x=b[i];

}

if(y>b[i])

{

y=b[i];

}

}

printf("%d",x-y);


}

*/

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