ZOJ 1048 Financial Management】的更多相关文章

原题链接 题目大意:给出12个月的收入,求一个平均值. 解法:没什么好说的,就是一个除法. 参考代码: #include<stdio.h> int main(){ int i; float sum=0,k; for(i=0;i<12;i++){ scanf("%f",&k); sum+=k; } sum=sum/12; printf("$%.2f",sum); return 0; }…
我承认这是一道水的不能再水的题,今天一下就做到了,还是无耻的帖上来吧 #include <stdio.h> int main() { double sum=0; for(int i=1;i<13;i++) { double tmp=0; scanf("%lf",&tmp); sum+=tmp; } printf("$%.2lf\n",sum/12); return 0; }…
Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 126087   Accepted: 55836 Description Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has deci…
Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 179458   Accepted: 67604 Description Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has deci…
[POJ1004]Financial Management 试题描述 Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab hold of his financial portfolio and solve his financing pr…
Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 164431   Accepted: 61085 Description Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has deci…
Recently,i am learning some useful things about financial management by reading <Essentials of Corporate Finance> writed by Ross/Westerfield/Jordan.Now i will share with you. Chapter One : Introduction to Financial Management Traditionally,finance a…
一. 题目 Financial Management Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 173910   Accepted: 65186 Description Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry ha…
Financial Management 时间限制:3000 ms  |  内存限制:65535 KB 难度:1   描述 Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab hold of his financial portfolio…
Financial Management POJ - 1004 解题思路:水题. #include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main() { double sum=0.0; double now=0.0; while(cin>>now){ sum+=now; ;i<;i++){ cin&…