急求C语言编程

2025-01-03 14:07:21
推荐回答(2个)
回答1:

/*
 ============================================================================
 Name        : C_test.c
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Hello World in C, Ansi-style
 ============================================================================
 */

#include 
#include 
#include 

int main(void) {

char s[10];
int a[5];
int i;//循环变量
int a_=0;//a数组下标变量
int Ω;//最后计算出的结果
gets(s);
    for(i=1;i<=10;i=i+2){
     a[a_]=s[i]-48;
     a_++;
    }
Ω=(2*(a[0]+a[4])+2-a[4]-(a[1]+a[3]))/2;
 printf("Ω=%d\n",Ω);








puts("end");
return EXIT_SUCCESS;
}

回答2:

不明白你的具体需求,输入是什么,输出是什么?