可以,但是输入数据的时候一定也要加上逗号。用scanf()读取数据时,输入的格式必须和scanf()的格式控制字符串对应,比如说:1、scanf("%d,%d",&a,&b);因为两个%d之间有一个逗号,所以在输入时两个整数之间只能用逗号分隔,如果用其它符号分隔就会出错(比如说此时用空格、回车分隔就会出错)2、scan...
include <stdio.h>int main(){char s[100];int v;scanf("%d,%s",&v, s);//先输入整型变量v,再输入字符串,可以使用逗号分隔。printf("%s\n%d\n", s, v);//输出得到的变量,每行一个值。return 0;}如果输入:123,abc 会输出:abc 123 但是如果先输入字符串再输入数字,比如用scanf...
strtok函数可以根据指定的分隔符拆分字符串。其原型如下: #include<stdio.h>#include<stdlib.h>#include<string.h>intmain(){charstr[80] ="1001#8888#你好#1993#世界";constchars[2] ="#";// 分割字符串,以逗号和空格作为分隔符char* token;char* strArray[10];//指针数组/* 获取第一个子字符串 */...
include<iostream> include<vector> include<sstream> usingnamespacestd;intmain(){ strings;vector<int>v;cin>>s;//将读入的字符串转化成is流 istringstreamis(s);intinter;charch;while(is>>inter)//只能读出is流中的一个整形读进inter { v.push_back(inter);is>>ch;//然后读一个字符型读...
上述代码中,我们首先调用了strcpy函数,将原始字符串复制到一个临时缓冲区buf中。然后,我们使用sscanf函数不断读取出逗号分隔的子串,将其赋值给token字符串变量,在每次读取完子串后,将其在buf中所占的空间删除,继续进行下一轮读取操作。 需要注意的是,每次调用sscanf函数时,都需要使用一个格式化字符串来指定读取的子串...
C语言中输入函数scanf()的参数格式字符串中使用空格或逗号都可以作为分隔符来读取输入的数据。然而,空格...
结论是,C语言的scanf函数在输入数据时,确实可以使用逗号来分隔不同的数据类型,但这需要确保输入的格式与scanf的格式控制字符串匹配。例如,当你使用scanf("%d,%d",&a,&b);时,输入的整数必须用逗号分隔,而不能用空格或回车。然而,对于scanf("%d%d",&a,&b);这样的格式,空白字符(空格、回车...
使用逗号作为分隔符:可以使用sscanf()函数和字符串操作函数strtok()来将输入数据按照逗号进行分隔。例如:c#include <stdio.h>#include <string.h>int main() { char input[] = "1,2,3"; char *token; 使用strtok函数将输入数据按照逗号进行分隔token = strtok(input, ","); while (token != NULL) { ...
先将所有的读进来存在一个字符串中,然后用字符分割函数strtok()//具体可参见API 例如:char str[] = "now # is the time for all # good men to come to the # aid of their country";char delims[] = "#";char *result = NULL;result = strtok( str, delims );while( result != ...
int a[4];scanf("%d,%d,%d,%d", &a[0], &a[1], &a[2], &a[3]);