1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-10-18 16:48:41 +00:00
202401-programming-assignments/【实践课内】2.选择结构1/7-2 偶数乘2奇数乘3.c

18 lines
183 B
C
Raw Normal View History

2024-10-18 08:13:01 +00:00
#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;
}