?? intro28.cpp
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -