mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
9 lines
121 B
C
9 lines
121 B
C
int a = -1;
|
|
long b = -1l;
|
|
float c = -1.5f;
|
|
double d = -1.5;
|
|
|
|
int main() {
|
|
return (a + b + (int)c + (long)d) == -4;
|
|
}
|