當前位置:係統粉 > 電腦問答 > 其他問答 > 編寫代碼實現從輸入流中分析出數字串(C++)

編寫代碼實現從輸入流中分析出數字串(C++)

提問者:溫柔壞男人new  |  瀏覽 次  |  提問時間:2017-01-26  |  回答數量:2

編寫代碼實現從輸入流中分析出數字串(C++) 編寫代碼實現從輸入流中分析出數字串,輸入串為: A012BCD378 274D EF55G^Z 輸出為: Digit string 1 is: 012 Digit string 2 is: 378 Digit string 3 is: 274 Digit string 4 is: 55 要求用c++實現,望各位大哥指點指點

已有2條答案
風吹褲衩jj涼x

風吹褲衩jj涼x

回答數:200  |  被采納數:56

2017-01-26 02:31:26
#include<iostream.h>
#include <string.h>

void main()
{
char str[200];
cin.getline(str,200);
int num=1;
char*p=strtok(str,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ");
while(1)
{
if(!p)break;
if(strlen(p))
{
cout<<"Digit string "<<num<<" is: "<<p<<endl;
num++;
}
p=strtok(0,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ");


}
}
讚 20
盧子弦

盧子弦

回答數:134  |  被采納數:29

2017-01-26 03:10:23
非常感謝!!!
讚 13
解決方法
版權信息

Copyright @ 2011 係統粉 版權聲明 最新發布內容 網站導航