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