Mark11


私信TA

用户名:Mark11

访问量:26450

签 名:

懒惰,傲慢,愤怒

等  级
排  名 362
经  验 5239
参赛次数 0
文章发表 47
年  龄 20
在职情况 学生
学  校 NorthWest University
专  业 S.E

  自我简介:

从头来过的苦逼


#include<stdio.h>
#include<string.h>
int main(){
    int N;
    char input[100];
    scanf("%d", &N);
    getchar();
    for(int i=0; i<N; i++){
        gets(input);
        for(int j=0; input[j]!='\0'; j++){
            if(input[j]==' '){
                input[j] = ',';
            }
        }
        puts(input);
    }
    return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »