笔记二(C++中strtok字符串剪切函数以及格式输入函数sscanf)

#include 
#include
/*对于输入1,2,3,4,5,6...,输出1 2 3 4 5 6...*/
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    int dp[1000],i=0;
    cin.tie(0);
    cout.tie(0);
    cout<<"One way:"<>dp[i++]&&cin.get()!='\n');
    for(int j=0;j

 

你可能感兴趣的:(笔记,strtok,sscanf)