https://www.acmicpc.net/problem/13163
한줄 후기 : 오호랏 godchae~
쉽다.
#include <stdio.h>
#include <string.h>
int change(int cnt, char str[]);
int main(){
char str[102];
int n, i, cnt;
scanf("%d\n", &n);
for(i=0; i<n; i++){
cnt=0;
gets(str);
change(cnt, str);
}
}
int change(int cnt, char str[]){
char arr[102] = {0};
int i, j=0;
for(i=0; i<strlen(str); i++){
if(cnt == 0){
if(str[i] == ' ') cnt++;
}
else{
if(str[i] != ' ') arr[j++] = str[i];
}
}
printf("god%s\n",arr);
return;
}
'DEV > PS' 카테고리의 다른 글
[9933] 민균이의 비밀번호, C (0) | 2019.07.20 |
---|---|
[15953] 상금 헌터, C (0) | 2019.07.15 |
[1713] 후보 추천하기, C (0) | 2019.07.15 |
[15904] UCPC는 무엇의 약자일까? , C (0) | 2019.07.05 |
[2841] 외계인의 기타연주, C (0) | 2019.07.04 |