intro28.cpp

来自「hello everybody. good lucky to you」· C++ 代码 · 共 28 行

CPP
28
字号
// INTRO28.CPP--Example from Chapter 3, "An Introduction to C++"

#include <iostream.h>

int main()
{
	float hours[52];
	int week;

	// Initialize the array
	for (week = 0; week < 52; week++)
		hours[week] = 0;

	// Store four values in array
	hours[0] = 32.5;
	hours[1] = 44.0;
	hours[2] = 40.5;
	hours[3] = 38.0;

	// Retrieve values and show their addresses
	cout << "Element "<< "\tValue " << "\tAddress\n";
	for (week = 0; week < 4; week++)
		cout << "hours[" << week << "]" << '\t'
		     << hours[week] << '\t' << &hours[week] << '\n';

	return 0;
}

⌨️ 快捷键说明

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