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