mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 19:43:11 +02:00
9 lines
110 B
C++
Executable File
9 lines
110 B
C++
Executable File
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
float X = 1/2;
|
|
std::cout << X << std::endl;
|
|
return 0;
|
|
}
|