首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
guoq416的代码贴
→
全部
[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年4月5日 18:12
[C语言]大家快来找碴啊!
/*我编写了个程序,源代码如下:*/
#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
[C语言]这个哪错了,各位大侠请指正
#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
[C语言]简单程序
#include<stdio.h>
void main()
{
printf("hello world");
}
阅读全部
| 2013年3月24日 00:32
1
guoq416
全部(4)
C语言(4)