You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
142 B

const float pi = 3.14159;
float g = 2.71828;
int main() {
float a = pi;
float b = g;
float c = a + b;
return (int)c; // 5
}