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...
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;//然后读一个字符型读...
可以,但是输入数据的时候一定也要加上逗号。用scanf()读取数据时,输入的格式必须和scanf()的格式控制字符串对应,比如说:1、scanf("%d,%d",&a,&b);因为两个%d之间有一个逗号,所以在输入时两个整数之间只能用逗号分隔,如果用其它符号分隔就会出错(比如说此时用空格、回车分隔就会出错)2、scan...
c语言中没有 string class, 假定你指 char 字符串。用 sscanf 方法可以分割。char str2[]="aa 123,bb 456,cc 789,dd 000";按逗号分割为4 部分:aa 123 bb 456 cc 789 dd 000 --- char str[]="aa,bb,cc,dd";按逗号分割为4 部分:aa bb cc dd --- include <stdio.h> main(){...
在C语言中,可以使用多个分隔符来拆分数组。拆分数组是指将一个字符串或字符数组按照指定的分隔符进行分割,得到多个子字符串或子数组。 C语言提供了一些函数来实现这个功能,其中最常用的是strtok函数。strtok函数可以将一个字符串按照指定的分隔符进行分割,并返回分割后的第一个子字符串。之后,可以通过多次调用strtok函...
在C 语言中,可以使用strtok()函数来按字符分割字符串 #include<stdio.h>#include<string.h>intmain(){charstr[] ="Hello, world!";constchardelimiter =',';// 分隔符为逗号char*token;/* 获取第一个分隔符之前的子字符串 */token =strtok(str, &delimiter);/* 打印分割后的子字符串 */while(token ...
int a[4];scanf("%d,%d,%d,%d", &a[0], &a[1], &a[2], &a[3]);
先将所有的读进来存在一个字符串中,然后用字符分割函数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 != ...
如果是逗号分隔的,可以用下面方法进行切割:include <stdio.h>#include <string.h> // 将str字符以spl分割,存于dst中,并返回子字符串数量int split(char dst[][80], char* str, const char* spl){ int n = 0; char *result = NULL; result = strtok(str, spl); while(...