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

📄 intro29.cpp

📁 hello everybody. good lucky to you
💻 CPP
字号:
//INTRO29.CPP--Example from Chapter 3, "An Introduction to C++"

#include <iostream.h>
#include <string.h>


int main()
{
	char string[80];              // Has 79 usable elements
	int pos, num_chars;

	cout << "Enter a string for the character array: ";
	cin.get(string,80,'\n');
	cout << "How many characters do you want to extract? ";
	cin >> num_chars;


	for (pos = 0; pos < num_chars; pos++)
	cout << string[pos];
	cout << '\n';

	return 0;
}

⌨️ 快捷键说明

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