C语言,目的:输入一串数字,用空格隔开,然后赋值给数组
2个回答
展开全部
你的程序和你的题目相差悬殊呀,我想你的本意应该是:
输入:123 456 789 ,然后分割赋值
a[0] = 123;
a[1] = 456;
a[2] = 789;
是这个意思吧
#include<stdio.h>
#include<string.h>
int main(void)
{
char a[100];
char c[] = " ";
printf("请输入一串数字:");
gets(a);
printf("分割后的数字是:\n");
printf("%s\n",strtok(a,c));
char *p = strtok(NULL,c);
while(p)
{
printf("%s\n",p,c);
p = strtok(NULL,c);
}
return 0;
}
输入:123 456 789 ,然后分割赋值
a[0] = 123;
a[1] = 456;
a[2] = 789;
是这个意思吧
#include<stdio.h>
#include<string.h>
int main(void)
{
char a[100];
char c[] = " ";
printf("请输入一串数字:");
gets(a);
printf("分割后的数字是:\n");
printf("%s\n",strtok(a,c));
char *p = strtok(NULL,c);
while(p)
{
printf("%s\n",p,c);
p = strtok(NULL,c);
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询