Lab cpp 02

background image

Laboratorium nr 2

Temat: Strumień wejścia i wyjścia. Formatowanie danych.
Windows: Struktura programu

1) Konsola: strumienie wejścia i wyjścia
Uwaga: W języku C++ oprócz standardowych funkcji printf() i scanf() wprowadzono nowy mechanizm obsługi
wejścia i wyjścia – nazywany dalej strumieniem. Mechanizm ten oparty jest na modyfikacji operatora << tak, aby
spełniał on funkcję wyjścia, zaś operatora >> tak, aby zapewniał obsługę wejścia. Deklaracje zawarte są w pliku
nagłówkowym iostream.h

a) Strumień wejścia cout <<

C

C++

#include <stdio.h>

#include <stdlib.h>

int main(){

int i=1;

printf("Czesc\nLaboratorium z C++

numer=%d\n",i);

system("PAUSE");

return 0;

}

#include <iostream.h>

#include <stdlib.h>

int main(){

int i=1;

cout << "Czesc\n" << "Laboratorium z

C++ numer=" << i << "\n";

system("PAUSE");

return 0;

}

b)

Strumień wyjścia cin >>

C

C++

#include <stdio.h>

#include <stdlib.h>

int main(){

int i;

printf("Podaj numer lab.:");

scanf("%d",&i);

printf("Czesc\nLaboratorium z C++

numer=%d\n",i);

system("PAUSE");

return 0;

}

#include <iostream.h>

#include <stdlib.h>

int main(){

int i;

cout << "Podaj numer lab.:";

cin >> i;

cout << "Czesc\n" << "Laboratorium z

C++ numer=" << i << "\n";

system("PAUSE");

return 0;

}

c) Tworzenie i zapisywanie do pliku

C

C++

#include <stdio.h>

#include <stdlib.h>

int main(){

char plik[12];

FILE *wsk_pliku;

int i=1;

printf("Podaj nazwe pliku:");

gets(plik);

if((wsk_pliku=fopen(plik,"w")) !=NULL){

fprintf(wsk_pliku, "Czesc\n

Laboratorium z C++ numer=%d\n",i);

fclose(wsk_pliku);

}

else printf("Blad otwarcia pliku\n");

system("PAUSE");

return 0;

}

#include <iostream.h>

#include <stdlib.h>

#include <fstream.h>

int main(){

ofstream strumien_plik;

ifstream strumien_file;

char plik[12], bufor[80];

int i=1;

cout << "Podaj nazwe pliku:";

cin >> plik;

strumien_plik.open(plik);

strumien_plik << "Czesc\n" <<

"Laboratorium C++ numer=" << i <<"\n";

strumien_plik.close();

strumien_file.open(plik);

strumien_file >> bufor;

strumien_file.close();

cout << bufor << "\n";

system("PAUSE");

return 0;

}

background image

Formatowania danych:

Kod

Znaczenie

\n

nowa linia

\t

tabulator

%d, %s. itp.

! nie jest wymagane – strumień sam rozpoznaje typ danej, na podstawie przesłanego obiektu

hex

Postać szesnastkowa liczby

dec

Postać dziesiętna liczby

setw(int w)

Ustawienie szerokości pola, np. setw(5)

setprecision(int pr) Określenie ilości miejsc liczb typu float

flush

Opróżnienie bufora strumienia

ws

Pominięcie spacji

itd.

....

Zadanie : Opracowuj prosty program kalkulatora z wykorzystaniem strumieni wejścia i wyjścia. Program
powinien posiadać krótkie menu oraz możliwość zapisywania i odtwarzania historii operacji do i z pliku
zewnętrznego.

2) Windows: struktura programu

#include <windows.h>

/* Declare Windows procedure */

LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/* Make the class name into a global variable */

char szClassName[ ] = "WindowsApp";

int WINAPI WinMain (HINSTANCE hThisInstance,

HINSTANCE hPrevInstance,

LPSTR lpszArgument,

int nFunsterStil)

{

HWND hwnd; /* This is the handle for our window */
MSG messages; /* Here messages to the application are saved */
WNDCLASSEX wincl; /* Data structure for the windowclass */

/* The Window structure */

wincl.hInstance = hThisInstance;

wincl.lpszClassName = szClassName;

wincl.lpfnWndProc = WindowProcedure; /* This function is called by windows */
wincl.style = CS_DBLCLKS; /* Catch double-clicks */

wincl.cbSize = sizeof (WNDCLASSEX);

/* Use default icon and mouse-pointer */

wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);

wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);

wincl.hCursor = LoadCursor (NULL, IDC_ARROW);

wincl.lpszMenuName = NULL; /* No menu */
wincl.cbClsExtra = 0; /* No extra bytes after the window class */
wincl.cbWndExtra = 0; /* structure or the window instance */
/* Use Windows's default color as the background of the window */

wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

/* Register the window class, and if it fails quit the program */

if (!RegisterClassEx (&wincl))

return 0;

/* The class is registered, let's create the program*/

hwnd = CreateWindowEx (

0, /* Extended possibilites for variation */
szClassName, /* Classname */
"Windows App", /* Title Text */
WS_OVERLAPPEDWINDOW, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */
544, /* The programs width */

background image

375, /* and height in pixels */
HWND_DESKTOP, /* The window is a child-window to desktop */
NULL, /* No menu */
hThisInstance, /* Program Instance handler */
NULL /* No Window Creation data */

);

/* Make the window visible on the screen */

ShowWindow (hwnd, nFunsterStil);

/* Run the message loop. It will run until GetMessage() returns 0 */

while (GetMessage (&messages, NULL, 0, 0))

{

/* Translate virtual-key messages into character messages */

TranslateMessage(&messages);

/* Send message to WindowProcedure */

DispatchMessage(&messages);

}

/* The program return-value is 0 - The value that PostQuitMessage() gave */

return messages.wParam;

}

/* This function is called by the Windows function DispatchMessage() */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)

{

switch (message) /* handle the messages */

{

case WM_DESTROY:

PostQuitMessage (0); /* send a WM_QUIT to the message queue */

break;

default: /* for messages that we don't deal with */

return DefWindowProc (hwnd, message, wParam, lParam);

}

return 0;

}


Wyszukiwarka

Podobne podstrony:
Lab cpp 12
Lab cpp 09
Lab cpp 06
Lab cpp 05
Lab MG 02
MB (Lab), Sprawozdanie 02
MB (Lab) Sprawozdanie 02
lwm c lab 01 02
Lab cpp 08
Lab cpp 07
lab pwsp 02 id 258616 Nieznany
Lab cpp 03
LAB 27 02 RAD , WOJSKOWA AKADEMIA TECHNICZNA
Lab cpp 04
Lab cpp 11
Lab cpp 12

więcej podobnych podstron