第一次写博客,就当是做笔记吧,希望能帮到大家
第二章练习题
#include <stdio.h>
int main(void){
//任务:把2英寻转成英尺
float feet,fathoms;
printf("请输入英寻:\n");
scanf("%f",&feet);
fathoms = 6 * feet;
printf("%.2f 英寻 = %.2f 英尺\n",feet,fathoms);
system("pause");
return 0;
}
#include <stdio.h>
int main(void){
//任务:调用printf()函数
printf("宋某某\n");
printf("宋\n某某\n");
printf("宋");
printf("某某\n");
system("pause");
return 0;
}
#include <stdio.h>
int main(void){
//任务:打印你的姓名和地址
printf("宋某某\n");
printf("长沙学院\n");
system("pause");
return 0;
}
#include <stdio.h>
int main(void){
//任务:把你的年龄转换成天数,并显示这两个值
int age = 20;
int day = age * 365;
printf("%d\n",age);
printf("%d\n",day);
system("pause");
return 0;
}
#include <stdio.h>
void tom(void);
void jerry(void);
int main(void){
//任务:调用两个自定义函数
tom();
tom();
tom();
jerry();
system("pause");
return 0;
}
void tom(void){//定义两个新函数
printf("abcdefg\n");
}
void jerry(){
printf("hijklmn\n");
}
#include <stdio.h>
void tom(void);
void jerry(void);
int main(void){
//任务:调用两个自定义函数
tom();
jerry();
printf("\n");
tom();
printf("\n");
jerry();
printf("\n");
system("pause");
return 0;
}
void tom(void){//定义两个新函数
printf("abcdefg");
}
void jerry(){
printf("hijklmn");
}
#include <stdio.h>
int main(void){
//任务:创建一个整型变量toes
int toes = 10;
int a = toes * 2;
int b = toes * toes;
printf("%d\n",a);
printf("%d\n",b);
system("pause");
return 0;
}
#include <stdio.h>
void smile(void);
int main(void){
//任务:输出smile
smile();
smile();
smile();
printf("\n");
smile();
smile();
printf("\n");
smile();
printf("\n");
system("pause");
return 0;
}
void smile(void){//定义一个函数
printf("smile!");
}
#include <stdio.h>
void one_three(void);
void two(void);
int main(void){
//任务:调用函数
printf("starting now:\n");
one_three();
printf("done\n");
system("pause");
return 0;
}
void one_three(void){//定义一个函数
printf("one\n");
two();
printf("three\n");
}
void two(void){
printf("two\n");
}
第二章复习题
1.C语言的基本模块是什么?
它们都叫函数
2.什么是语法错误?写出一个英文例子和C语言例子。
语法错误:违反了组成语句或程序的规则
英文例子:My speak English good
C语言例子:printf"starting now:\n";
3.什么是语义错误?写出一个英文例子和C语言例子。
语义错误:指含义错误
英文例子:The sentence is nice Czech.
C语言例子:n3 = 3 + n;
4.在main、int、function、char、= 中,那些是C语言的关键字?
int 和 char
main是函数名
function是函数的意思
= 是一个运算符