实验
任务1——打印小人
单个
#include <stdio.h>void main() {printf(" O \n");printf("<H>\n");printf("I I\n");}
一列
#include <stdio.h>
void main() {printf(" O \n");printf("<H>\n");printf("I I\n");printf(" O \n");printf("<H>\n");printf("I I\n");}
一行
#include <stdio.h>void main() {printf(" O \t O \n");printf("<H>\t<H>\n");printf("I I\tI I\n");}
任务2——判断三角形
#include <stdio.h>void main()
{double a, b, c;// 输入三边边长scanf_s("%lf%lf%lf", &a, &b, &c);// 判断能否构成三角形// 补足括号里的逻辑表达式if (a + b > c && a + c > b && b + c > a) {printf("能构成三角形\n");}else {printf("不能构成三角形\n");}}
任务3——判断
#include <stdio.h>void main()
{char ans1, ans2;printf("每次课前认真预习、课后及时复习了没? (输入y或Y表示有,输入n或N表示没有) :");ans1 = getchar();getchar();printf("\n动手敲代码实践了没? (输入y或Y表示敲了,输入n或N表示木有敲) : ");ans2 = getchar();if ((ans1 == 'y' || ans1 == 'Y' ) && (ans1 == 'y' || ans1 == 'Y')) {printf("\n罗马不是一天建成的, 继续保持哦:)\n");}else {printf("\n罗马不是一天毁灭的, 我们来建设吧\n");}}
getchar()
读取了用户输入的字符,但会留下一个换行符在输入缓冲区中,这个换行符会被第二个 getchar()
读取。为了解决这个问题,可以在第一次读取后添加一个getchar()
来清除缓冲区中的换行符。
任务4——修改错误
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>void main()
{double x, y;char c1, c2, c3;int a1, a2, a3;scanf("%d%d%d", &a1, &a2, &a3);printf("a1 = %d, a2 = %d, a3 = %d\n", a1, a2, a3);scanf("%c%c%c", &c1, &c2, &c3);printf("c1 = %c, c2 = %c, c3 = %c\n", c1, c2, c3);scanf("%lf,%lf", &x, &y);printf("x = %f, y = %lf\n", x, y);}
任务5——四舍五入
#include <stdio.h>void main()
{int year;year = 1000000000.0 / 60 / 60 / 24 / 365 +0.5;printf("10亿秒约等于%d年\n", year);}
任务6——算术运算
多次
#include <stdio.h>
#include <math.h>void main()
{double x, ans;scanf_s("%lf", &x);ans = pow(x, 365);printf("%.2f的365次方: %.2f\n", x, ans);}
单次
#include <stdio.h>
#include <math.h>void main()
{double x, ans;while (scanf_s("%lf", &x) != EOF){ans = pow(x, 365);printf("%.2f的365次方: %.2f\n", x, ans);printf("\n");}}
任务7——单位转换
#include <stdio.h>void main()
{double c, f;while (scanf_s("%lf", &c) != EOF){f = 9.0 / 5 * c + 32;printf("摄氏度c = %lf 时,华氏度f = %lf\n", c, f);}}
任务8——海伦公式
#include <stdio.h>
#include <math.h>void main()
{double a, b, c, s, S;printf("输入三角形三边:");while (scanf_s("%lf%lf%lf", &a, &b, &c) != EOF) {s = (a + b + c) / 2;S = sqrt(s * (s - a) * (s - b) * (s - c));printf("a = %lf, b = %lf, c = %lf, area = %lf\n", a, b, c, S);printf("输入三角形三边:");}
}