首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴guoq416的代码贴全部
#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年4月5日 18:12
/*我编写了个程序,源代码如下:*/
#include <stdio.h>
#define SIZE 2
struct Student_type
{
   char name[10];
   int num;
   int age;
   char addr[15]; } stud[SIZE];
void save()
{
   FILE *fp;
......................
阅读全部 | 2013年4月5日 18:02
#include <stdio.h>
   main()
  {
int i=2,j=3,k;
k=i+j;
{
   int k=8;
   if(i=3)
       printf(“%d”,k);
   else 
       printf(“%d”,j);
}
......................
阅读全部 | 2013年4月5日 17:53
#include<stdio.h>
void main()
{
printf("hello world");
}
阅读全部 | 2013年3月24日 00:32
1
guoq416