用c语言写一段程序,当该股票涨幅超过9%时卖出,当该股票跌幅达到5%时卖出;
时间: 2023-03-20 13:00:50 浏览: 158
以下是一个简单的用C语言编写的程序,当股票涨幅超过9%时,输出提示信息并卖出股票。
```c
#include <stdio.h>
int main() {
double buy_price, current_price, increase;
printf("请输入购买价格:");
scanf("%lf", &buy_price);
printf("请输入当前价格:");
scanf("%lf", ¤t_price);
increase = (current_price - buy_price) / buy_price * 100; // 计算涨幅百分比
if (increase > 9) {
printf("股票涨幅超过9%%,建议卖出!\n");
// 此处可以编写卖出股票的代码
}
return 0;
}
```
该程序首先通过 `scanf` 函数分别读入购买价格和当前价格,然后计算涨幅百分比并存储在变量 `increase` 中。接着使用 `if` 语句判断涨幅是否超过了9%,如果超过了则输出提示信息,可以在此处添加卖出股票的代码。注意涨幅百分比要使用两个百分号 `%%` 转义,否则会被解释为格式化字符串的占位符。
阅读全文