#include
#include
using namespace std;
//该文件名称:cpptest.cpp
//终端下编译指令:
//g++ -o cpptest cpptest.cpp
int main(int argc,char* argv[])
{
for(int x = 0;x< argc;x++)
{
cout<
import os
string_para = "sssss"
int_para = 10
os.system(r'./cpptest "abcd" '+ string_para+r' '+str(int_para))##注意每个参数之间必须用空格隔开