编程实现:输入四个整数,选择不同选项,完成对应的功能要求,并输出计算的结果。 (1)当输入1时,四个数按照从大到小输出; (2)当输入2 时,四个数按照从小到大输出; (3)当输入 3 时,统计出四个数中奇数和偶数的个数c语言实现
时间: 2024-12-06 22:21:08 浏览: 13
毕设和企业适用springboot企业数据管理平台类及跨境电商管理平台源码+论文+视频.zip
为了实现这个功能,你可以使用C语言编写一个程序,如下所示:
```c
#include <stdio.h>
// 函数原型声明
void sort(int a[], int n, int order);
int count_odd_even(int arr[], int n);
int main() {
int num[4], choice;
// 输入四个整数
printf("请输入四个整数:");
for (int i = 0; i < 4; i++) {
scanf("%d", &num[i]);
}
// 用户选择排序或计数
printf("请选择操作(1-排序,2-升序,3-统计):");
scanf("%d", &choice);
switch (choice) {
case 1: // 从大到小排序
sort(num, 4, 1);
printf("从大到小的顺序:\n");
for (int i = 0; i < 4; i++) {
printf("%d ", num[i]);
}
break;
case 2: // 从小到大排序
sort(num, 4, 0); // 使用默认降序
printf("从小到大的顺序:\n");
for (int i = 0; i < 4; i++) {
printf("%d ", num[i]);
}
break;
case 3: // 统计奇偶数
int odd_count = count_odd_even(num, 4);
printf("\n奇数有 %d 个,偶数有 %d 个\n", odd_count, 4 - odd_count);
break;
default:
printf("无效的选择!\n");
break;
}
return 0;
}
// 冒泡排序函数,order=1表示降序,order=0表示升序
void sort(int a[], int n, int order) {
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if ((order == 1 && a[j] > a[j + 1]) || (order == 0 && a[j] < a[j + 1])) {
int temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
// 计算数组中奇数和偶数的数量
int count_odd_even(int arr[], int n) {
int odd_count = 0;
for (int i = 0; i < n; i++) {
if(arr[i] % 2 == 0) {
odd_count++;
} else {
odd_count--;
}
}
return odd_count;
}
```
运行此程序后,根据用户输入的选择,将完成相应的功能并显示结果。
阅读全文