mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
18 lines
183 B
C
18 lines
183 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
int x;
|
||
|
|
||
|
scanf("%d", &x);
|
||
|
|
||
|
if (x % 2 == 0) {
|
||
|
x *= 2;
|
||
|
} else {
|
||
|
x *= 3;
|
||
|
}
|
||
|
|
||
|
printf("y=%d\n", x);
|
||
|
|
||
|
return 0;
|
||
|
}
|