2010210110的c语言实验报告
c语言编程。。基础题
实验1:熟悉C语言编程环境
实验时间:2010-2011学年第六周周二9-10节 实验内容:
3.编程题
# include <stdio.h>
main ()
{
printf("what is a computer ?");
return 0;
}
运行结果:
what is a computer ?
3-思考题-1
# include <stdio.h>
main ()
{
printf("2010210110,王楠嵋,0101004");
return 0;
}
运行结果:
2010210110,王楠嵋,0101004
3-思考题-2
# include <stdio.h>
main ()
{
printf("你在计算中心A1机房吗?");
return 0;
}
运行结果:
你在计算中心A1机房吗?


