1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <stdio.h> void yamabiko(char *s, int n) { for (int i = 0; i < n; i++) { for (int j = 0; j < i; j++) printf(" "); printf("%s\n", s); } } void main() { printf("shout word ? "); char word[20]; scanf("%19s", word); yamabiko(word, 5); }