More actions
imported>jereneal20 No edit summary |
imported>anjw0111 No edit summary |
||
| Line 38: | Line 38: | ||
== 팀2 == | == 팀2 == | ||
== | == 조성욱, 안정원 == | ||
#include<stdio.h> | |||
#include<stdlib.h> | |||
#include<string.h> | |||
int main() | |||
{ | |||
char buffer[20]; | |||
char store[1000][20]; | |||
int count=0,i; | |||
int store_count[1000]={0,}; | |||
freopen("input.txt","r",stdin); | |||
while(scanf("%s ", buffer)!=EOF) | |||
{ | |||
for(i=0;i<count;i++) | |||
{ | |||
if(strcmp(buffer,store[i])==0) | |||
{break; | |||
} | |||
} | |||
if(i==count) | |||
{ | |||
strcpy(store[count],buffer); | |||
store_count[count]=1; | |||
count++; | |||
} | |||
else | |||
{ | |||
store_count[i]++; | |||
} | |||
} | |||
for(i=0;i<count;i++) | |||
{ | |||
printf("%s %d\n",store[i],store_count[i]); | |||
} | |||
fcloseall(); | |||
return 0; | |||
} | |||
== 팀4 == | == 팀4 == | ||
Revision as of 10:44, 6 May 2013
CodeRace 2013
김현빈, 김태진
#include <stdio.h>
int main(int argc, const char * argv[])
{
int aa=0,ab=0,ac=0,i=0;
char a[4],b[4],c[4],r[4];
FILE* fp;
fp=fopen(argv[1],"r");
for(i=0;i<4;i++){
fscanf(fp,"%s",r);
if(r[0]=='a'){
aa++;
a[0]=r[0];
a[1]=r[1];
a[2]=r[2];
}else if(r[0]=='b'){
ab++;
b[0]=r[0];
b[1]=r[1];
b[2]=r[2];
}else if(r[0]=='c'){
ac++;
c[0]=r[0];
c[1]=r[1];
c[2]=r[2];
}
}
printf("%s %d\n",a,aa);
printf("%s %d\n",b,ab);
printf("%s %d",c,ac);
return 0;
}
팀2
조성욱, 안정원
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char buffer[20];
char store[1000][20];
int count=0,i;
int store_count[1000]={0,};
freopen("input.txt","r",stdin);
while(scanf("%s ", buffer)!=EOF)
{
for(i=0;i<count;i++)
{
if(strcmp(buffer,store[i])==0)
{break;
}
}
if(i==count)
{
strcpy(store[count],buffer);
store_count[count]=1;
count++;
}
else
{
store_count[i]++;
}
}
for(i=0;i<count;i++)
{
printf("%s %d\n",store[i],store_count[i]);
}
fcloseall();
return 0;
}