11 líneas
143 B
C
11 líneas
143 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int i = 4;
|
|
int result = i % 2;
|
|
if (result == 0) {
|
|
printf("zero\n");
|
|
}
|
|
return 0;
|
|
}
|