首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴ch12345的代码贴C语言
#include <stdio.h>
int main()
{
  int a,b,c,d,e;
  e=(a+b+c+d)/4;
  scanf("%d%d%d%d\n",&a,&b,&c,&d);
  printf("%f\n",e);
  return 0;



}
阅读全部 | 2013年3月27日 22:11
1
ch12345