1. C语言编程
首先是scanf读入double要用%lf
其次if else嵌套太多,一定要用花括号{},避免自己搞混
再次,变量名要有意义些
#include<stdio.h>
//#include"genlib.h"
//#include"simpio.h"
intmain(void){
intloopCount,i;//后面这些变量没有被用到啊m,n,s[10];
doubleopen,close,max,min;//给变量起有意义的名字
doubleupper,lower;//箱体的上下边界
scanf("%d",&loopCount);
for(i=0;i<loopCount;i++){//请遵循c语言从0开始的惯例
scanf("%lf%lf%lf%lf",&open,&close,&max,&min);
//判断箱体的上下边界
if(open>close){
upper=open;
lower=close;
}else{
upper=close;
lower=open;
}
//判断有无影线
if((max<=upper)&&(min>=lower)){
printf("无");
}else{
printf("有");
if(max>upper){
printf("上");
}
if(min<lower){
printf("下");
}
}
printf("影线的");
//判断是"空心红","实心蓝白"还是"十字红"
if(open<close){
printf("空心红");
}else{
if(open>close){
printf("实心蓝白");
}else{//open==close
printf("十字红");
}
}
printf("蜡烛 ");
}
}
2. C语言(股价预测函数)
#include<stdlib.h>
#include<time.h>
floatprediction(floatx,intn){//从x随机行走n步
staticfloatdelta=0.01;
staticcharfirst=1;//定义静态局部变量
inti;
if(first){//如果第一次运行
srand(time(NULL));//用系统时间初始化随机数发生器
first=0;
}
for(i=0;i<n;++i){
x+=rand()/(1.0+RAND_MAX)*2*delta-delta;//x加上一个[-Δ,Δ)之间的随机小数
}
returnx;
}
3. 急求一道c语言的股票题
某家公司上市,2000年每股收益1元,相比于1999你那,每股收益的增长率是100%。
往后每年,每股收益增长率以每年10个百分点的速度下降,最后稳定在10%。
某人在2000年以静态市盈率为20的股价买入这家股票5000股,一直持有到2015年卖出。
假设卖出的股价相当于静态市盈率为10.计算:总共赚到多少钱?这15年的平均年华收益率是多少?
静态市盈率:当前股价/之前那年的每股收益。
4. 在线c语言编程高手
#include <stdio.h>
int main()
{
float price=-1, last_price=-1;
int cnt = 0, total = 0;
int increase_flag = 0;
while(~scanf("%f", &price))
{
total++;
printf("%d\t%7.3f", total, price);
if(cnt > 2)
printf("\t%s", increase_flag ? "sell" : "buy");
printf("\n");
if(last_price != -1)
{
if(price > last_price)
{
if(increase_flag) cnt ++;
else increase_flag = 1, cnt = 1;
}
else if(price < last_price)
{
if(!increase_flag) cnt ++;
else increase_flag = 0, cnt = 1;
}
else cnt++;
}
last_price = price;
}
return 0;
}
part3的
#include <stdio.h>
int main()
{
float price=-1, last_price=-1;
int cnt = 0, total = 0;
int increase_flag = 0;
float cash = 10000, shares = 0;
printf("period price cash shares value\n");
printf("-----------------------------------------------\n");
while(~scanf("%f", &price))
{
total++;
if(cnt > 2)
{
if(increase_flag)
{
if(shares != 0)
{
cash = shares * price;
shares = 0;
}
}
else
{
if(cash != 0)
{
shares = cash / price;
cash = 0;
}
}
}
printf(" %3d \t%7.3f\t%10.2f\t%7.2f\t%10.2f\n", total, price, cash, shares, cash+shares * price);
if(last_price != -1)
{
if(price > last_price)
{
if(increase_flag) cnt ++;
else increase_flag = 1, cnt = 1;
}
else if(price < last_price)
{
if(!increase_flag) cnt ++;
else increase_flag = 0, cnt = 1;
}
else cnt++;
}
last_price = price;
}
return 0;
}
5. 请问,常见的股票、期货行情软件是用啥语言编写的比如大智慧、同花顺、博易大师、文华等,谢谢!
python
lisp
perl
c
以上这四种语言中,C语言用到的最多,也是最重要的。
6. 跪求c语言高手帮忙解答一个问题~~!!!期末用的!!
亲手给你写的,汗!
#include <stdio.h>
#include <stdlib.h>
typedef struct
{
char stockname[16];
float coeffi;
float price_per;
float est_price;
} STOCK;
void calc(STOCK stock_arr[],int n)
{
int i;
for(i=0;i<n;i++)
stock_arr[i].est_price=stock_arr[i].coeffi * stock_arr[i].price_per;
}
void InputData(STOCK st)
{
char buff[128];
char *p;
for(int i=0;i<5;i++)
{
puts("请输入数据");
gets(buff);
p=strtok(buff,"");
memcpy(st[i].stockname,p);
p=strtok(NULL,"");
st[i].coeffi=atof(p);
p=strtok(NULL,"");
st[i].price_per=atof(p);
}
}
OutputResult(STOCK st)
{
puts("Results are as follows:");
puts("=============================");
puts("股票名称\t股票估格\n");
for(int i=0;i<5,i++)
printf("%s\t%f",st[i].stockname,st[i].est_price);
}
void main()
{
STOCK stoc[5];
InputData(stoc);
calc(stoc,5);
OutputResult(stoc);
}