更新 '2207/C语言精通120题.md'

This commit is contained in:
smallkun 2025-02-17 19:44:55 +08:00
parent 5feafc6471
commit 2695e388c8

View File

@ -39,7 +39,18 @@ int main(void){
3写一个程序输入实数X,输出Y,计算<img src="https://yp.smallkun.cn/markdown/image-20250116004443767.png!compress" alt="image-20250116004443767" style="zoom:33%;" /> 3写一个程序输入实数X,输出Y,计算<img src="https://yp.smallkun.cn/markdown/image-20250116004443767.png!compress" alt="image-20250116004443767" style="zoom:33%;" />
```c
#include <stdio.h>
int main(){
float x, y;
scanf("%f", &x);
y = 3*x*x*x+0.4*x*x-2*x/3;
printf("y=%.2f\n", y);
return 0;
}
```
4编写程序读入三个整数a,b,c然后交换它们中的数使a存放b的值b存放c的值c存放a的值。 4编写程序读入三个整数a,b,c然后交换它们中的数使a存放b的值b存放c的值c存放a的值。