Solve the Haiku problem in C language and solve the haiku problem in C Language
Solution to Haiku in C Language
Just remove the comma
#include
int main(){char a[22];while(scanf("%c",&a[0])!=EOF){for(int i=1;i<=19;i++)scanf("%c",&a[i]);for(int i=0;i<=4;i++)printf("%c",a[i]);printf(" ");for(int i=6;i<=12;i++)printf("%c",a[i]);printf(" ");for(int i=14;i<=18;i++)printf("%c",a[i]);printf("\n");}return 0;}
Problem Statement
As a New Year's gift, doldolphin received a stringSOf length19.
The stringSHas the following format: [five lowercase English letters], [seven lowercase English letters], [five lowercase English letters].
Doldolphin wants to convert the comma-separated stringSInto a space-separated string.
Write a program to perform the conversion for him.
Constraints The lengthSIs19. The sixth and fourteenth characters inSAre,. The other characters inSAre lowercase English letters. Input
The input is given from Standard Input in the following format:
s
Output
Print the string after the conversion.
Sample Input 1
happy,newyear,enjoy
Sample Output 1
happy newyear enjoy
Replace all the commas inhappy, newyear, enjoywith spaces to obtainhappy newyear enjoy.
Sample Input 2
haiku,atcoder,tasks
Sample Output 2
haiku atcoder tasks
Sample Input 3
abcde,fghihgf,edcba
Sample Output 3
abcde fghihgf edcba