注:统一标注知识中,默认前一道题会的后面不会再标记。
(“提取函数”的思想)
第1-3章
1.编程求 1×2×3×4×5
#include <stdio.h>
int main() {
int result = 1 * 2 * 3 * 4 * 5;
printf("1 * 2 * 3 * 4 * 5 = %d\n", result);
return 0;
}
基本框架 + 输入值 + 算术运算符
2.屏幕输入2000—2500年中的任意一年,判断其是否为闰年,并将结果输出。
提示:(1)能被4整除,但不能被100整除的年份是闰年;(2)能被400整除的年份是闰年。
#include <stdio.h>
int main() {
int year;
printf("请输入2000-2500年中的一年:");
scanf("%d", &year);
if (year % 4 == 0 && year % 100 != 0) {
printf("%d 是闰年\n", year);
} else {
if (year % 400 == 0) {
printf("%d 是闰年\n", year);
} else {
printf("%d 不是闰年\n", year);
}
}
return 0;
}
条件语句 + 布尔逻辑
也可以用“ | | ”——逻辑“或”
3.编程求 1-1/2+1/3-1/4
#include <stdio.h>
int main() {
double result = 0.0;
result = 1.0 - 1.0/2.0 + 1.0/3.0 - 1.0/4.0;
printf("结果是: %.6f\n", result);
return 0;
}
双精度浮点计算
4.屏幕输出
*
**
***
#include <stdio.h>
int main() {
int i, j;
for (i = 1; i <= 3; i++) {
for (j = 1; j <= i; j++) {
printf("*");
}
printf("\n");
}
return 0;
}
循环语句思路
5.屏幕输入任何一个大写字母,然后按照其对应的小写字母输出如下形状。假设你输入了B,则输出
bbbbbb
bbbbbb
bbbbbb
bbbbbb
bbbbbb
#include <stdio.h>
#include <ctype.h>
void print_pattern(char letter) {
char lower_letter = tolower(letter);
for (int i = 0; i < 5; i++) {
if (i % 2 == 0) {
for (int j = 0; j < 6; j++) {
printf("%c", lower_letter);
}
} else {
printf(" ");
for (int j = 0; j < 6; j++) {
printf("%c", lower_letter);
}
}
printf("\n");
}
}
int main() {
char letter;
printf("请输入一个大写字母: ");
scanf("%c", &letter);
print_pattern(letter);
return 0;
}
各个细节(小写转化、空格、换行)的逻辑
第4章
1.有3个整数a、b、c,由键盘输入,首先检查有没有两两相等的,如果三者各不相等,输出其中中间的数。
| | “或”:至少有一个为真,则整个表达式为真
#include <stdio.h>
int main() {
int a, b, c, t;
printf("请输入三个整数:(空格作间隔)");
scanf("%d %d %d", &a, &b, &c);
if ((a == b) || (b == c) || (a == c)) {
printf("存在相等的整数。");
} else {
if (((a > b) && (b > c)) || ((c > b) && (b > a))) {
printf("中间的数是:%d\n", b);
} else {
if (((b > a) && (a > c)) || ((c > a) && (a > b))) {
printf("中间的数是:%d\n", a);
} else {
printf("中间的数是:%d\n", c);
}
}
}
return 0;
}
并列关系(和、或),else if 的用法
2.[原题有误,已修正] 给一个百分制成绩,要求输出等级‘A’、‘B’、‘C’、‘D’、‘E’。90分以上为‘A’,80~89分为‘B’,70~79分为‘C’,60~69分为‘D’,60分以下为‘E’。
#include <stdio.h>
int main() {
int score;
char grade;
printf("请输入成绩:");
scanf("%d", &score);
switch(score / 10) {
case 10: grade = 'A'; break;
case 9: grade = 'A'; break;
case 8: grade = 'B'; break;
case 7: grade = 'C'; break;
case 6: grade = 'D'; break;
default: grade = 'E';
}
printf("该成绩的等级为:%c\n", grade);
return 0;
}
switch语句:多分支选择
3.给定一个不多于5位的正整数,要求:① 求它是几位数;② 分别打印出每一位数字;③ 按逆序打印出各位数字。例如原数为321,应输出123。
#include <stdio.h>
int main() {
int num, temp, digit, count = 0;
int digits[5];
printf("请输入一个不多于5位的正整数: ");
scanf("%d", &num);
temp = num;
while (temp > 0) {
digits[count] = temp % 10;
temp /= 10;
count++;
}
printf("这个数字是 %d 位数\n", count);
printf("各位数字分别是:\n");
for (int i = count - 1; i >= 0; i--) {
printf("%d\n", digits[i]);
}
printf("按逆序打印的数字是: ");
for (int i = 0; i < count; i++) {
printf("%d", digits[i]);
}
printf("\n");
return 0;
}
4.企业发放的奖金根据利润提成。利润I低于或等于10万元时,奖金可提成10% ;利润高于10万元,低于20万元(100000<I≤200000)时,其中10万元按10%提成,高于10万元的部分,可提成7.5% ;200000<I≤400000时,其中20万元仍按上述办法提成(下同),高于20万元的部分按5%提成;400000<I≤600000时,高于40万元的部分按3%提成;600000〈I≤1000000时,高于60万的部分按1.5%提成;I>1000000时,超过100万元的部分按1%提成。从键盘输入当月利润I,求应发放奖金总数。要求:(1)用if语句编程序;
#include <stdio.h>
int main() {
double I, w;
printf("输入当月利润:");
scanf("%lf", &I);
if (I <= 100000) {
w = I * 0.1;
} else if (I <= 200000) {
w = 100000 * 0.1 + (I - 100000) * 0.075;
} else if (I <= 400000) {
w = 100000 * 0.1 + 100000 * 0.075 + (I - 200000) * 0.05;
} else if (I <= 600000) {
w = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + (I - 400000) * 0.03;
} else if (I <= 1000000) {
w = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + (I - 600000) * 0.015;
} else {
w = 100000 * 0.1 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + 400000 * 0.015 + (I - 1000000) * 0.01;
}
printf("应发奖金总数:%.2lf\n", w);
return 0;
}
(2)用switch语句编程序。
#include <stdio.h>
double calculate_bonus_switch(double profit) {
double bonus = 0;
int range;
if (profit <= 100000) {
range = 1;
} else if (profit <= 200000) {
range = 2;
} else if (profit <= 400000) {
range = 3;
} else if (profit <= 600000) {
range = 4;
} else if (profit <= 1000000) {
range = 5;
} else {
range = 6;
}
switch (range) {
case 1:
bonus = profit * 0.10;
break;
case 2:
bonus = 100000 * 0.10 + (profit - 100000) * 0.075;
break;
case 3:
bonus = 100000 * 0.10 + 100000 * 0.075 + (profit - 200000) * 0.05;
break;
case 4:
bonus = 100000 * 0.10 + 100000 * 0.075 + 200000 * 0.05 + (profit - 400000) * 0.03;
break;
case 5:
bonus = 100000 * 0.10 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + (profit - 600000) * 0.015;
break;
case 6:
bonus = 100000 * 0.10 + 100000 * 0.075 + 200000 * 0.05 + 200000 * 0.03 + 400000 * 0.015 + (profit - 1000000) * 0.01;
break;
}
return bonus;
}
int main() {
double profit;
printf("请输入当月利润: ");
scanf("%lf", &profit);
double bonus = calculate_bonus_switch(profit);
printf("应发放的奖金总数为: %.2lf\n", bonus);
return 0;
}
这样可以避免case空行 fall-through
5.输入4个整数,要求按由大到小的顺序输出。
#include <stdio.h>
int main() {
int arr[4];
int temp;
printf("请输入4个整数:\n");
for (int i = 0; i < 4; i++) {
scanf("%d", &arr[i]);
}
// 使用冒泡排序对数组进行由大到小排序
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3 - i; j++) {
if (arr[j] < arr[j + 1]) {
temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
printf("由大到小排序后的整数为:\n");
for (int i = 0; i < 4; i++) {
printf("%d ", arr[i]);
}
printf("\n");
return 0;
}
6.有4个圆柱塔,圆心分别为(2,2)、(-2,2)、(2,-2)、(-2,-2),圆半径为1。这4个塔的高度分别为10m。塔以外无建筑物。今输入任一点的坐标,求该点的建筑高度(塔外的高度为零)。
#include <stdio.h>
#include <math.h>
int main() {
double x, y, x1, y1, x2, y2, x3, y3, x4, y4, d1, d2, d3, d4;
printf("请输入该点的坐标:");
scanf("%lf %lf", &x, &y);
x1 = 2.0;
x2 = -2.0;
x3 = -2.0;
x4 = 2.0;
y1 = 2.0;
y2 = 2.0;
y3 = -2.0;
y4 = -2.0;
d1 = sqrt(pow((x-x1), 2)+ pow((y-y1), 2));
d2 = sqrt(pow((x-x2), 2)+ pow((y-y2), 2));
d3 = sqrt(pow((x-x3), 2)+ pow((y-y3), 2));
d4 = sqrt(pow((x-x4), 2)+ pow((y-y4), 2));
if((d1 > 1.0) && (d2 > 1.0) && (d3 > 1.0) && (d4 > 1.0)) {
printf("该点的建筑高度为:0m。\n");
} else {
printf("该点的建筑高度为:10m。\n");
}
return 0;
}
判断点是否在塔内,塔内则高度均为10m。
⭐提取函数的思想:
#include <stdio.h>
#include <math.h>
#define RADIUS 1.0
#define HEIGHT 10.0
double towers[4][2] = {
{2.0, 2.0},
{-2.0, 2.0},
{2.0, -2.0},
{-2.0, -2.0}
};
int is_in_tower(double x, double y, double tower_x, double tower_y) {
double distance = sqrt(pow(x - tower_x, 2) + pow(y - tower_y, 2));
return distance <= RADIUS;
}
double get_building_height(double x, double y) {
for (int i = 0; i < 4; i++) {
if (is_in_tower(x, y, towers[i][0], towers[i][1])) {
return HEIGHT;
}
}
return 0.0;
}
int main() {
double x, y;
printf("请输入点的坐标 (x, y): ");
scanf("%lf %lf", &x, &y);
double height = get_building_height(x, y);
printf("该点的建筑高度为: %.2f 米\n", height);
return 0;
}
第5章
1.输入两个正整数m和n,求其最大公约数和最小公倍数。
最大公约数:能同时整除a和b的最大因数;
最小公倍数:两个整数最小的共有倍数。
#include <stdio.h>
int gcd(int a, int b) {
while (b != 0) {
int temp = b;
b = a % b;
a = temp;
}
return a;
}
int lcm(int a, int b) {
return (a * b) / gcd(a, b);
}
int main() {
int num1, num2;
printf("请输入第一个整数:");
scanf("%d", &num1);
printf("请输入第二个整数:");
scanf("%d", &num2);
int greatest_common_divisor = gcd(num1, num2);
int least_common_multiple = lcm(num1, num2);
printf("%d 和 %d 的最大公约数是:%d\n", num1, num2, greatest_common_divisor);
printf("%d 和 %d 的最小公倍数是:%d\n", num1, num2, least_common_multiple);
return 0;
}
// 解释见9-10章 第1题
2.输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int letters = 0, spaces = 0, digits = 0, others = 0;
printf("请输入一行字符串: ");
fgets(str, sizeof(str), stdin);
for (int i = 0; str[i] != '\0'; i++) {
if (isalpha(str[i])) {
letters++;
} else if (isspace(str[i])) {
spaces++;
} else if (isdigit(str[i])) {
digits++;
} else {
others++;
}
}
printf("英文字母: %d\n", letters);
printf("空格: %d\n", spaces);
printf("数字: %d\n", digits);
printf("其他字符: %d\n", others);
return 0;
}
库函数<ctype.h>:isalpha判断字母、isdigit判断数字、isspace判断空格换行符
3.求1!+2!+3!+4!+5!+…+20!
#include <stdio.h>
int main() {
int n, i;
unsigned long long product, sum;
sum = 0;
for (n = 1; n <= 20; n++) {
product = 1;
for (i = 1; i <= n; i++) {
product = product * i;
}
sum = sum + product;
}
printf("sum = %llu\n", sum);
return 0;
}
int的表示范围可能不够用,要用long long,同时“unsigned”全为正数进一步扩大范围。
优化版:
#include <stdio.h>
int main() {
int n;
unsigned long long product = 1, sum = 0; // 初始化 product 为 1
for (n = 1; n <= 20; n++) {
product = product * n; // 利用上一次的阶乘结果
sum = sum + product;
}
printf("sum = %llu\n", sum);
return 0;
}
4.打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。例如:153是一个水仙花数,因为153=1^3+5^3+3^3。
#include <stdio.h>
int main() {
int num, hundred, ten, one;
printf("所有的水仙花数是:\n");
for (num = 100; num < 1000; num++) {
hundred = num / 100;
ten = (num / 10) % 10;
one = num % 10;
if (num == hundred * hundred * hundred + ten * ten * ten + one * one * one) {
printf("%d\n", num);
}
}
return 0;
}
5.猴子吃桃问题。猴子第一天摘下若干个桃子,当即吃了一半,还不过瘾,又多吃了一个。第二天早上又将剩下的桃子吃掉一半,又多吃一个。以后每天早上都吃了前一天剩下的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘多少桃子。
6用迭代法求x=a^(1/2) 。求平方根的迭代公式为:x(n+1)=1/2(xn+a/xn) .要求前后两次求出的差的绝对值少于0.00001。
7打印以下图案
*
* * *
* * * * *
* * * * * * *
* * * * *
* * *
*
副本(9-10章)
1.写两个函数,分别求两个整数的最大公约数和最小公倍数,用主函数调用这两个函数,并输出结果两个整数由键盘输入。
求最大公约数:辗转相除法
| 辗转相除法:a / b = m…r,令 a = b,b = r,直到 a % b == 0.
求最小公倍数:= 两个整数相乘 / 最大公约数
#include <stdio.h>
int gcd(int a, int b) {
while (b != 0) {
int temp = b;
b = a % b;
a = temp;
}
return a;
}
int lcm(int a, int b) {
return (a * b) / gcd(a, b);
}
int main() {
int num1, num2;
printf("请输入两个个整数:");
scanf("%d %d", &num1, &num2);
int greatest_common_divisor = gcd(num1, num2);
int least_common_multiple = lcm(num1, num2);
printf("最大公约数是:%d\n", greatest_common_divisor);
printf("最小公倍数是:%d\n", least_common_multiple);
return 0;
}
2.求方程的根,用三个函数分别求当b2-4ac大于0、等于0、和小于0时的根,并输出结果。从主函数输入a、b、c的值。
#include <stdio.h>
#include <math.h>
void solve_greater_than_zero(double a, double b, double discriminant) {
double root1 = (-b + sqrt(discriminant)) / (2 * a);
double root2 = (-b - sqrt(discriminant)) / (2 * a);
printf("方程有两个不同的实根:%.2f 和 %.2f\n", root1, root2);
}
void solve_equal_zero(double a, double b) {
double root = -b / (2 * a);
printf("方程有一个实根:%.2f\n", root);
}
void solve_less_than_zero(double a, double b, double discriminant) {
double realPart = -b / (2 * a);
double imaginaryPart = sqrt(-discriminant) / (2 * a);
printf("方程有两个虚根:%.2f + %.2fi 和 %.2f - %.2fi\n", realPart, imaginaryPart, realPart, imaginaryPart);
}
int main() {
double a, b, c;
printf("请输入a, b, c的值:\n");
scanf("%lf %lf %lf", &a, &b, &c);
double discriminant = b * b - 4 * a * c;
if (discriminant > 0) {
solve_greater_than_zero(a, b, discriminant);
} else if (discriminant == 0) {
solve_equal_zero(a, b);
} else {
solve_less_than_zero(a, b, discriminant);
}
return 0;
}
3.写一个判断素数的函数,在主函数输入一个整数,输出是否是素数的消息。
10.用递归法将一个整数n转换成字符串。例如,输入486,应输出字符串"486"。n的位数不确定,可以是任意位数的整数。