⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gptp.cpp

📁 Particle filtering implementation and application to people tracking.
💻 CPP
字号:
#include <iostream>#include <sstream>#include <string>using namespace std;int main (int argc, const char* argv){	while (cin)	{		char buf[1000];		cin.getline(buf,1000);		istringstream is(buf);		string head;		is >> head;		if (head=="GNUPLOT")		{			cout << buf+strlen("GNUPLOT") << endl << flush;		}		else		{			cerr << buf << endl << flush;		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -