liu.cpp
来自「关于数据结构的各章节的c原代码实现」· C++ 代码 · 共 15 行
CPP
15 行
// liu.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "stdio.h"
#include "iostream.h"
int main(int argc, char* argv[])
{ CString str("child is child");
int pos=str.Find("child",5);
cout<<pos<<endl;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?