岳阳楼记 - C语言代码示例
#include <stdio.h> #include <string.h>
int main() { char str[30] = '岳阳楼记'; int length = strlen(str);
for (int i = 0; i < length; i++)
{
printf('%c\n', str[i]);
}
return 0;
}
原文地址: https://www.cveoy.top/t/topic/lh9m 著作权归作者所有。请勿转载和采集!