• Keine Ergebnisse gefunden

Summary of basic C++-commands K. Vollmayr-Lee, O. Ippisch April 13, 2010

N/A
N/A
Protected

Academic year: 2021

Aktie "Summary of basic C++-commands K. Vollmayr-Lee, O. Ippisch April 13, 2010"

Copied!
5
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Summary of basic C++-commands

K. Vollmayr-Lee, O. Ippisch April 13, 2010

1 Compiling

To compile a C++-program, you can use either g++ or c++.

g++ -o executable_filename.out sourcefilename.cc c++ -o executable_filename.out sourcefilename.cc

Each command in C++ is followed by “;”. Carriage return has no meaning in C++. This means you can also distribute a command over several lines.

2 Comments

Essential for the writing of clear programs are comments, which are explanations for your program, and which are ignored by the compiler.

/∗ ... ∗/ puts the text ... into comment (more than one line possible) // ... puts text ... for rest of same line into comment

3 Data Types

Data Type Variable Declaration Assignment Range

(Example) (Example)

integer shorti1, i2 ; i1 = 3; [−32768 : 32767]

int i1 , i2 ; [−2.14·109: 2.14·109]

longi1, i2 ; [−2.14·109: 2.14·109]

unsignedi1,i2; [0 : 4.29·109]

unsigned longi1,i2; [0 : 4.29·109] real float f1 , f2 ; f1 = 3.2; f2 = 2.1E−3; ±[10−38: 1038]

7 digits precision

doublef1,f2; ±[10−308: 10308]

16 digits precision long doublef1,f2; ±[10−4932: 104932]

19 digits precision

single charc1,c2; c1 =’R’

character

string of string s1 , s2 ; s1 ="Farmer"

characters

logical boolb1,b2; b1 =true; b2 =false

3.1 Constants

A constant value is defined with:

(2)

const type variableName = value;

The value of a constant can not be altered after the declaration.

Examples:

const i n t numPoints = 1 0 ; const double e p s i l o n = 1E−20;

4 Input And Output

4.1 Input/Output With Screen:

To be able to use the following commands you need to write

#include <i o s t r e a m>

using namespace s t d ;

at the beginning of your program. If you leave out the lineusing namespacestd;

you have to usestd :: cout,std :: endl andstd :: cin instead ofcout,endl andcin. 4.1.1 output

c o u t << " string of ch ara cte rs "

c o u t << v a r i a b l e << e n d l ; 4.1.2 input

c i n >> v a r i a b l e ;

4.2 Input/Output With Files:

To be able to use the following commands you need to write

#include <f s t r e a m>

using namespace s t d ;

at the beginning of your program. If you leave out the lineusing namespacestd;

you have to usestd :: ofstream, andstd :: ifstreaminstead ofofstreamandifstream. 4.2.1 output

o f s t r e a m o u t f i l e v a r i a b l e (" o u t p u t f i l e n a m e ", i o s : : o u t ) ; o u t f i l e v a r i a b l e << v a l u e ;

will write the value into the file with name outputfilename.

4.2.2 input

i f s t r e a m i n f i l e v a r i a b l e (" i n p u t f i l e n a m e ", i o s : : i n ) ; i n f i l e v a r i a b l e >> a ;

will read a value from the file with name outputfilename and store it in the variablea.

5 Arithmetic Calculations

5.1 Operations

+ − ∗ /

(3)

5.2 Mathematical Functions

To be able to use all of the following functions you need to to write at the beginning of your program:

#include <cmath>

C++ name function

pow(x,y) xy

sin (x) cos(x) tan(x)

asin(x) sin−1(x) in range [−π/2, π/2]

acos(x) cos−1(x) in range [0, π]

atan(x) tan−1(x) in range [−π/2, π/2]

sinh(x) cosh(x) tanh(x)

exp(x) ex

log(x) ln(x)

sqrt(x) √

x

fabs(x) |x|

floor (x) largest integer not greater than x; example: floor (5.768)= 5 ceil (x) smallest integer not less than x; example: ceil (5.768) = 6 fmod(x,y) floating-point remainder ofx/y with the same sign asx x\% y remainder ofx/y, bothxandy integers

6 Decision Statements

6.1 Comparison Operators

C++ name function example

== = i1 == i2

!= 6= i1 != i2

> > i1 >i2

< < i1 <i2

>= ≥ i1 >= i2

<= ≤ i1 <= i2

&& and ( i1 != i2)&& (i1 == i3)

|| or ( i1 == i2)|| ( i1 == i3)

Be carefull: using the assignment=instead of the comparison ==is one of the very common errors in C++.

6.2 Statements

i f( c o n d i t i o n ) {

s t a t e m e n t s }

i f( c o n d i t i o n )

(4)

{

s t a t e m e n t s }

e l s e {

s t a t e m e n t s }

i f( c o n d i t i o n ) {

s t a t e m e n t s }

e l s e i f {

s t a t e m e n t s }

e l s e {

s t a t e m e n t s }

switch ( c a s e v a r i a b l e ) {

case v a l u e 1 a : case v a l u e 1 b :

{s t a t e m e n t s} break;

case v a l u e 2 a : case v a l u e 2 b :

{s t a t e m e n t s} break;

d e f a u l t:

{s t a t e m e n t s} }

6.3 Repetitions

while ( c o n d i t i o n s ) {

s t a t e m e n t s }

f o r ( i n i t ; c o n d i t i o n s ; update ) {

s t a t e m e n t s }

do {

s t a t e m e n t s // t h e s e s t a t e m e n t s a r e done

// b e f o r e t h e w h i l e s t a t e m e n t i s c h e c k e d } while ( c o n d i t i o n ) ;

(5)

7 Functions

A function is a set of commands. It is useful to write a user-defined function, i.e. your own function, whenever you need to do the same task many times in the program. All programs start execution at the function main. Three steps are important in the use of functions:

1. Before a function is used it has to be declared:

function_type function_name(types_of_parameter_list);

double f e e t i n c h t o m e t e r (int,double) ;

void m e t e r t o f e e t i n c h (double, i n t &, double & ) ;

The function type declares which variable is passed back from the function (void means none). The variableswithout “&” are all input parameters, i.e. only passed to the function and are not changed within the function.

The variableswith “&” may be passed both to and from the function and may be changed in the function.

2. In the program you use the function with:

function_name(actual_parameter_list);

Examples:

f e e t i n c h t o m e t e r ( 5 . 0 , 3 . 2 ) ; m e t e r t o f e e t i n c h ( 1 . 3 , f e e t , i n c h ) ;

3. At some place the function has to be defined with:

function_type function_name(parameter_types_and_names) {declarations and statements }

If a function is defined before its first usage, the declaration (see above, number 1) is unnecessary. Examples:

double f e e t i n c h t o m e t e r (i n t f e e t , double i n c h ) {. . .};

void m e t e r t o f e e t i n c h (double m, i n t &f e e t , double &i n c h ) {. . .};

Referenzen

ÄHNLICHE DOKUMENTE

B) Put the words in the correct order to make questions. Then answer the questions. C) Match the comments on the left with the responses on the right. Bridget lives in the flat.

__Did Bridget advise Annie to buy some new clothes______ ? ___Yes, she did. C) Match the comments on the left with the responses on the right. Bridget lives in the flat. The girl

Indeed, in the mountainous region of mainland Southeast Asia, expansion of the area under natural forests is probably not a realistic option except in areas protected by

France is running on fumes, while the UK is choosing to be less engaged suffering from a justified “Bruxelles fatigue.” And the Mediterranean countries

He suggests introducing the matter to be discussed very briefly, then to communicate the bad news in a short, straightforward fashion without attempting to white- wash news that

Käesolevas töös uuritakse eeliseid ja probleeme, mis sülearvuti igapäevase kasutamisega õppetöös kaasnevad, seda nii uurimuses osalenud õpilaste kui õpetajate poolt

Thesaurus software developed at Tartu University Library as part of integrated library system INGRID offers significant aid for thesaurus construction, subject indexing and

The peak at 700 nm in the fluorescent spectrum of chlorenchyma is however not at the same position as in the emission spectrum measured in pumpkin oil as it can be seen