September 2018 1 20 Report

Witam, otóż znalazłem w jednym kursie C++ taki kod i nie dokonca wiem co oznacza jedna komenda a mianowicie:

printf("Pole prostokata o bokach %.2f oraz %.2f wynosi %.2f cm2.", a, b, a*b);

#include <iostream>
#include <conio>

using namespace std;

int main()
{
double a, b;

cout << "Podaj dlugosci bokow prostokata: ";
cin >> a >> b;
printf("Pole prostokata o bokach %.2f oraz %.2f wynosi %.2f cm2.", a, b, a*b);

getch();
return 0;
}


Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.