C_C 中的结构体(下)

文章作者 100test 发表时间 2007:03:10 17:44:13
来源 100Test.Com百考试题网


下面我们重点对比两个例程,进一部分析关于效率的问题。

//-------------------------------------例程1---------------------------------

#include
#include
using namespace std.

struct test
{
char name[10].
float socre.
}.

void print_score(test &.pn)
{
cout<}

test get_score()
{
test pn.
cin>>pn.name>>pn.socre.
return pn.
}
void main()
{
test a[2].
int num = sizeof(a)/sizeof(test).
for(int i=0.i{
a[i]=get_score().
}
cin.get().
for(int i=0.i{
print_score(a[i]).
}
cin.get().
} 来源:www.examda.com

//-------------------------------------例程2---------------------------------

#include
#include
using namespace std.

struct test
{
char name[10].
float socre.
}.

void print_score(test &.pn)
{
cout<}

void get_score(test &.pn)
{
cin>>pn.name>>pn.socre.
}
void main()
{
test a[2].
int num = sizeof(a)/sizeof(test).
for(int i=0.i{
get_score(a[i]).
}
cin.get().
for(int i=0.i{
print_score(a[i]).
}
cin.get().
}



相关文章


C_C 中结构体(struct)知识点强化(一)
C_C 中的结构体(下)
C_C 中的结构体(上)
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛