|
|
|
C++ ขอตัวอย่าง การเขียนโปรแกรมภาษาซี โดยการใช้ Array |
|
|
|
|
|
|
|
Code (C++)
#include <iostream>
using std::cout;
using std::endl;
#include <iomanip>
using std::setw;
int main()
{
int n[ 10 ] = { 2, 7, 4, 8, 5, 4, 9, 7, 6, 3 };
for ( int i = 0; i < 10; i++ )
cout << n[ i ] << endl;
return 0;
}
อีก
Code (C++)
#include <iostream>
using std::cout;
using std::endl;
void staticArrayInit( void );
void automaticArrayInit( void );
int main()
{
staticArrayInit();
automaticArrayInit();
staticArrayInit();
automaticArrayInit();
return 0;
}
void staticArrayInit( void )
{
static int array1[ 3 ];
for ( int i = 0; i < 3; i++ )
cout << "array1[" << i << "] = " << array1[ i ] << " ";
for ( int j = 0; j < 3; j++ )
array1[ j ] = 0;
}
void automaticArrayInit( void )
{
int array2[ 3 ] = { 1, 2, 3 };
for ( int i = 0; i < 3; i++ )
cout << "array2[" << i << "] = " << array2[ i ] << " ";
for ( int j = 0; j < 3; j++ )
array2[ j ] = 0;
}
|
|
|
|
|
Date :
2011-03-02 13:58:29 |
By :
kukkai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//assing4.1.3 'filename : assing4_1_3
#include<iostream>
using namespace std;
main()
{
cout<<"3+12+80= "<<3+12+80<<endl;
system("pause");
}
|
|
|
|
|
Date :
2011-09-03 10:40:37 |
By :
หุ่นยนต์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-11-08 09:09:44 |
By :
sd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมนาย วสันต์ แสงมณี
|
|
|
|
|
Date :
2012-02-15 11:22:19 |
By :
ผมนาย วสันต์ แสงมณี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
000001
|
|
|
|
|
Date :
2012-05-29 11:03:02 |
By :
01111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5555 เรียนไม่รุเรื่องเท่ารายเรยยยย >///<
|
|
|
|
|
Date :
2012-06-21 12:17:12 |
By :
Froydlovely |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เข้าใจเลย แต่เราเชื่อว่าเรต้องเก่งให้ได้่
|
|
|
|
|
Date :
2012-09-13 17:00:52 |
By :
ฟารีดา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Love
|
|
|
|
|
Date :
2012-11-07 10:52:15 |
By :
aum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|