QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2670|回复: 60

[复制链接]
发表于 2003-4-13 00:02:24 | 显示全部楼层 |阅读模式
#include <stdio.h>
main()
{
float a[11];
int i;
for(i=1;i<10;i++)
{
scanf("%f \n",&a);
}
printf("\n");
for(i=1;i<11;i++)
{
printf("%f \n",a);
}
}

错了吗?(摘抄)
给我讲讲啊!谢谢
    [/list:u]
发表于 2003-4-13 00:32:25 | 显示全部楼层
如果编译出错了
你也得告诉我们错误信息是什么啊
回复

使用道具 举报

发表于 2003-4-13 02:15:17 | 显示全部楼层

Re: 急

#include <stdio.h>
main()
{
float a[11];
~~~how many u want? if 10 float, then define a[10]

int i;
for(i=1;i<10;i++)
~~~~~array in c begins from 0, a[0], a[1]...a[9]. so u should use i=0; i<10;i++

{
scanf("%f \n",&a);
~~~this \n is not wrong. but useless.

}
printf("\n");
for(i=1;i<11;i++)
~~~here u should use i<10 again.

{
printf("%f \n",a);
}
}

so u basic problem is 'the index of array in c'.
if u define a[x]. then it is from 0, 1, 2,,, x-1. u access to a[x] will have problem.
回复

使用道具 举报

 楼主| 发表于 2003-4-14 14:54:23 | 显示全部楼层
'the index of array in c' what means?
是10 个float数,帮忙回复一下"大家好"那个帖子
回复

使用道具 举报

 楼主| 发表于 2003-4-14 14:59:37 | 显示全部楼层
#include <stdio.h>
什么意思?必须写吗?
回复

使用道具 举报

 楼主| 发表于 2003-4-14 15:01:49 | 显示全部楼层
#include <stdio.h>
什么意思?必须写吗?
回复

使用道具 举报

发表于 2003-4-14 21:37:50 | 显示全部楼层
[quote:6c5b7b0bf4="goldedge"]#include <stdio.h>
什么意思?必须写吗?[/quote]

yes, some basic functions are declared there. so u need include it. check any basic c language book u can know.
回复

使用道具 举报

发表于 2003-4-14 21:39:30 | 显示全部楼层
[quote:ef65d9ba8c="goldedge"]'the index of array in c' what means?
是10 个float数,帮忙回复一下"大家好"那个帖子[/quote]
in c, when u want to use the elements in an array, u use an index to reference it, or use its address. an array with size n (when u declare it as a[n]) use index starting from 0, till n-1.
回复

使用道具 举报

 楼主| 发表于 2003-4-15 20:22:28 | 显示全部楼层
太感谢了,我的问题有点傻下次会好好看书的
谢谢你啊,(下次能不能写点中文啊?)呵呵~~~~
My English isn'tso good
Thank you so much!
回复

使用道具 举报

 楼主| 发表于 2003-4-15 20:28:27 | 显示全部楼层
如果要贴代码,凡事超过10行的,必需用“代码的”格式发:

代码:

    [code:1]
            ……
            代码
            ……
    [/code:1]
什么意思啊????????????
回复

使用道具 举报

发表于 2003-4-15 21:53:22 | 显示全部楼层
ok, i c. i will post the code like that next time.
i can not input chinese, and i have no time to install one.
回复

使用道具 举报

 楼主| 发表于 2003-4-18 23:11:37 | 显示全部楼层
谢谢,等你回复
回复

使用道具 举报

 楼主| 发表于 2003-4-18 23:13:39 | 显示全部楼层
为什么要代码?
回复

使用道具 举报

发表于 2003-4-18 23:14:57 | 显示全部楼层
[quote:5a7b849b4d="goldedge"] 谢谢,等你回复[/quote]

what reply? u c code problem already is clear.  
回复

使用道具 举报

发表于 2003-4-18 23:15:31 | 显示全部楼层
用代码就可以保持你的格式啊。看起来好看嘛。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-16 02:29 , Processed in 0.064526 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表