Temat:Pojęcie zmiennej i podstawowe typy danych
C++
1.Napisz program który wyświetli na ekranie następujące liczby:
-> 5
->8372189379
->8,0
->73,21
W przykładzie należy użyć odpowiednich typów dla zmiennych
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Proszę:
#include <cstdio>
#include <stdint.h>
int main()
{
uint8_t a = 5;
printf("%i\n", a);
uint64_t b = 8372189379;
printf("%llu\n", b);
double c = 8.0;
printf("%f\n", c);
double d = 73.21;
printf("%f\n", d);
}