一、题目
二、个人理解
此题估计出题人是想我们不断地进行取位数来做,但是实际上我们直接用字符串输入,再输出即可。
C语言:
#include <stdio.h>
#include <string.h>
int main()
{
char s[32];
scanf("%s", s);
for (int i = 0; i < strlen(s); i++) {
printf("%c ", s[i]);
}
return 0;
}
此题估计出题人是想我们不断地进行取位数来做,但是实际上我们直接用字符串输入,再输出即可。
C语言:
#include <stdio.h>
#include <string.h>
int main()
{
char s[32];
scanf("%s", s);
for (int i = 0; i < strlen(s); i++) {
printf("%c ", s[i]);
}
return 0;
}