C语言成长学习题(五)

十七、求一元二次方程ax2+bx+c=0的实根(要求a、b、c的值从键盘输入,a!=0)。

 1 #include <stdio.h>
 2 #include <math.h>
 3
 4 void main(void)
 5 {
 6     int a, b, c;
 7     float delta, x1, x2;
 8
 9     printf("Input a, b, c:\n");
10     scanf("%d%d%d", &a, &b, &c);
11     delta = b * b - 4 * a * c;
12     if(delta < 0)
13         printf("No real root.\n");
14     else
15     {
16         x1 = (-b + sqrt(delta)) / (2*a);
17         x2 = (-b - sqrt(delta)) / (2*a);
18         printf("x1 = %f, x2 = %f\n", x1, x2);
19     }
20 }

结果:

1.Input a, b, c:

 4 8 1

 x1 = 2.118034, x2 = -0.118034

2.Input a, b, c:

 2 4 3

 No real root.

3.Input a, b, c:

 4 12 9

 x1 = 1.500000, x2 = 1.500000

Mark:

  如果程序使用数学库函数,则必须在程序的开头加命令行#include <math.h>

十八、编写程序实现以下功能:输入某年的年份,判断是不是闰年。

 1 #include <stdio.h>
 2
 3 void main(void)
 4 {
 5     int year, flag;
 6
 7     scanf("%d", &year);
 8     if (year % 400 == 0)
 9         flag = 1;
10     else
11     {
12         if (year % 4 != 0)
13             flag = 0;
14         else
15         {
16             if (year % 100 != 0)
17                 flag = 1;
18             else
19                 flag = 0
20         }
21     }
22     if (flag == 1)
23         printf("%d is a leap year.\n", year);
24     else
25         printf("%d is not a leap year.\n", year);
26 }

十九、编写求下面分段函数值的程序,其中x的值从键盘输入。

 1 #include <stdio.h>
 2 {
 3     float x, y;
 4
 5     printf("Input data:\n");
 6     scanf("%f", &x);
 7     if (x < 0)
 8         y = 0;
 9     else if (x < 10)
10         y = x * x * x + 5;
11     else if (x < 20)
12         y = 2 * x * x - x - 6;
13     else if (x < 30)
14         y = x * x + 1;
15     else
16         y = x + 3;
17     printf("x = %f, y = %f\n", x, y);
18 }

二十、分析下面程序,观察其输出结果。

 1 #include <stdio.h>
 2
 3 void main(void)
 4 {
 5     int a;
 6
 7     scanf("%", &a);
 8     switch(a)
 9     {
10         case 1: printf("A");
11         case 2: printf("B");
12         case 3: printf("C"); break;
13         default: printf("D");
14     }
15 }

结果:

(1)1

  ABC

(2)2

  BC

(3)3

  C

(4)4

  D

时间: 2024-11-09 02:22:50

C语言成长学习题(五)的相关文章

C语言成长学习题(十五)

66.编写字符串复制的程序(用指针变量处理). 1 #include <stdio.h> 2 3 void main(void) 4 { 5 char a[50], b[80], *p, *q; 6 7 p = a; 8 q = b; 9 printf("Input data: "); 10 gets(a); 11 while (*p != '\0') 12 *q++ = *p++; 13 *q = '\0'; 14 puts(b); 15 } Mark: 复制操作结束后,

C语言成长学习题(十四)

六十一.定义4*6的实型数组,并将各行前5列元素的平均值分别放在同一行的第6列上. 1 #include <stdio.h> 2 3 void main(void) 4 { 5 float a[4][6], sum; 6 int i, j; 7 8 for (i = 0; i < 4; i++) 9 for (j = 0; j < 5; j++) 10 a[i][j] = i * j + 1; 11 for (i = 0; i < 4; i++) 12 { 13 sum =

C语言成长学习题(十三)

五十六.编写求字符串长度的程序. 1 #include <stdio.h> 2 3 void main(void) 4 { 5 char a[80]; 6 int i = 0, count = 0; 7 8 gets(a); 9 while (a[i] != '\0') 10 { 11 count++; 12 i++; 13 } 14 printf("%s = %d\n", a, count); 15 } 五十七.编写字符串复制的程序. 1 #include <std

C语言成长学习题(四)

十三.编写输出如下分段函数值的程序,要求x的值从键盘输入. 1 #include <stdio.h> 2 3 void main(void) 4 { 5 float x, y; 6 7 printf("Input x:\n"); 8 scanf("%f", &x); 9 if(x <= 0) 10 y = x + 1; 11 else if(x <= 1) 12 y = 1; 13 else 14 y = x; 15 printf(&

C语言成长学习题(十)

四十一.编写实现以下功能的程序:若从键盘输入字符Y(或y)或N(或n),则终止循环,否则一直等待输入. 1 #include <stdio.h> 2 #include <conio.h> 3 4 void main(void) 5 { 6 char c; 7 8 printf("是否继续(Y/N)?\n"); 9 do 10 { 11 c = getch(); 12 if (c == 'Y' || c == 'y' || c == 'N' || c =='n')

C语言成长学习题(十六)

72.假设一维数组中存放互不相同的十个整数,要求根据输入的下标值,即可直接删除. 1 #include <stdio.h> 2 3 int mydel (int *a, int n, int k) 4 { 5 int i; 6 7 for (i = k; i < n - 1; i++) 8 *(a+i) = *(a+i+1); 9 n--; 10 11 return n; 12 } 13 14 void myout (int *a, int n) 15 { 16 while (n >

C语言成长学习题(三)

十.编写一个含有逻辑表达式的程序. 1 #include <stdio.h> 2 3 void main(void) 4 { 5 int x; 6 7 x = 1; 8 printf("%d ", x>=0 && x<=2); 9 10 x = 5; 11 printf("%d ", x>=0 && x<=2); 12 printf("%d ", x<-3 || x>

C语言成长学习题(七)

二十六.输出1!.2!.3!.4!.....n!的值. 1 #include <stdio.h> 2 3 void main(void) 4 { 5 int i, n; 6 float fac; 7 8 printf("Input n: "); 9 scanf("%d", &n); 10 for (i = 1; i<=n; i++) 11 { 12 fac = fac * i; 13 printf("%d! = %.0f\n&qu

NPL ( neuro-linguistic programmers 神经语言程序员) / ( Neuro-Linguistic Programming 神经语言程序学/身心语言程式学/ 神经语言程式学/ 神经语言程式)

Neuro-Linguistic Programmers 神经语言程序员 Neuro-Linguistic Programming  神经语言程序学/身心语言程式学/ 神经语言程式学/ 神经语言程式 NLP是神经语言程序学 (Neuro-Linguistic Programming) 的英文缩写.在香港,也有意译为身心语法程式学的.N (Neuro) 指的是神经系统,包括大脑和思维过程.L (Linguistic) 是指语言,更准确点说,是指从感觉信号的输入到构成意思的过程.P (Program