明天听你试讲的,应该都是老师,他们主要要考核你的:是看你是否能够把课程的内容表达清楚,是你课程组织能力和你的表达能力。
成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于网站设计制作、网站制作、定陶网络推广、微信小程序定制开发、定陶网络营销、定陶企业策划、定陶品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;成都创新互联公司为所有大学生创业者提供定陶建站搭建服务,24小时服务热线:18980820575,官方网址:www.cdcxhl.com
所以当然应该选择能够反映你特点、优势和水平的内容。
选择一个循环语句应该是一个比较有个人发挥余地的内容。
建议你首先说清楚,学生学习已经进行到了什么程度,今天的学习内容是什么,然后开始你准备好的课程内容。
复制
#include
"stdio.h"
{char
s1[]="abcde",s2[]="scasasa";
strcpy(s1,s2);
如果s2长度大于s1则会覆盖掉
如果小于的话只是将s2的\0放在s1中\0的前面罢了,而后面处理字符串的函数是遇到\0就收手
函数名:
strncpy
功
能:
串拷贝
用
法:
char
*strncpy(char
*destin,
char
*source,
int
maxlen);
程序例:
#include
#include
int
main(void)
{
char
string[10];
char
*str1
=
"abcdefghi";
strncpy(string,
str1,
3);
string[3]
=
'\0';
printf("%s\n",
string);
return
0;
}
函数名:
remove
功
能:
删除一个文件
用
法:
int
remove(char
*filename);
程序例:
#include
int
main(void)
{
char
file[80];
/*
prompt
for
file
name
to
delete
*/
printf("file
to
delete:
");
gets(file);
/*
delete
the
file
*/
if
(remove(file)
==
0)
printf("removed
%s.\n",file);
else
perror("remove");
return
0;
}
函数名:
rename
功
能:
重命名文件
用
法:
int
rename(char
*oldname,
char
*newname);
程序例:
#include
int
main(void)
{
char
oldname[80],
newname[80];
/*
prompt
for
file
to
rename
and
new
name
*/
printf("file
to
rename:
");
gets(oldname);
printf("new
name:
");
gets(newname);
/*
rename
the
file
*/
if
(rename(oldname,
newname)
==
0)
printf("renamed
%s
to
%s.\n",
oldname,
newname);
else
perror("rename");
return
0;
}
改成如下:
#includestdio.h
float circle(int r1)
{
float area1=3*r1*r1;
return area1;
}
float circle(int r2)
{
float area2=3*r2*r2;
return area2;
}
main()
{
printf("%f",circle(1)+circle(2));
}
错误分析:
1、首先调用函数时括号里应该是实际的数值,或者是已经被赋值的变量。
2、C语言函数体声明时的参数不能直接赋值,这个声明只是告诉编译器我这个函数要接受这几个、这个类型的参数。
C语言函数调用是采用拷贝方式的,所以你传过去的值的副本被交换了,但是原值没变。
正确的方法是传递指针