/
1.3 Console Input And Output 1.3 Console Input And Output

1.3 Console Input And Output - PowerPoint Presentation

test
test . @test
Follow
346 views
Uploaded On 2019-03-17

1.3 Console Input And Output - PPT Presentation

a cademyzaribacom 1 Lecture Content Printing on the Console Reading from the Console 2 1 Printing on the Console Printing numbers Printing more variables using formatting strings 3 ID: 757407

reads console prints numbers console reads numbers prints write program reading printing integer character line single formatting string type

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "1.3 Console Input And Output" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

1.3 Console Input And Output

academy.zariba.com

1Slide2

Lecture Content

Printing on the ConsoleReading from the Console

2Slide3

1. Printing on the Console

Printing numbers.

Printing more variables using formatting strings.

3

Slide4

Formatting Strings

4

The formatting string looks like this:

{placeholder index[,alignment][:

formatString

]}

e.g. {0,20:F3}

There are different types of

formatStrings

:

“0.00” -

floating

C -

currency

D –

decimalE – exponential (scientific)F – fixed pointG – general N - numberP - percentage R – round TripX - hexadecimalSlide5

2. Reading from the Console

Reading a character.Reading a line.

Reading keys.

5

Slide6

Console.Read();

Reads a single character from the console, after pressing enter.

Returns an integer.To obtain a character we need to perform a type casting.

6

Slide7

Console.ReadKey();

Reads a combination of keys from the keyboard.

The result is of type ConsoleKeyInfo

.

KeyChar

– holds the key entered

Modifiers

– holds the modifiers information, e.g. ctrl

7

Slide8

Console.ReadLine();

Reads a single line of characters.

The result is of type string.

To read integers we need to convert (parse) the string to an integer value.

8

Slide9

Homework

9

1. Write a program that reads two positive integer numbers and prints how many numbers

p

exist between them such that the reminder of the division

with p

by

5

is

0

(inclusive). Example:

p(17,25)

=

22. Write a program that gets two numbers from the console and prints the greater of them. Don’t use if statements.Write a program that reads the coefficients a, b and c

of a quadratic equation

a

x

2

+b

x

+c=0

and solves it (prints its real roots).

Write

a program that gets a number

n

and after that gets more

n

numbers and calculates and prints their sum.

Write a program that reads an integer number

n

from the console and prints all the numbers in the interval [

1

..

n

], each on a single line.

Slide10

10

ReferencesSlide11

11

Zariba Academy

Questions