mirror of
https://github.com/szymon-jozef/ZUT-notatki.git
synced 2026-09-07 12:10:40 +02:00
10 lines
176 B
C++
10 lines
176 B
C++
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << 5 / 2 << '\n'; // 2
|
|
std::cout << 5 / 2.0 << '\n'; // 2.5
|
|
int x = 7;
|
|
double y = 2;
|
|
std::cout << x / y << '\n'; // 3
|
|
}
|