上一页 1 ··· 27 28 29 30 31
摘要: C++中也要0.00和&的使用 向量的使用#include<iostream>#include<vector>using namespace std;void input(vector<double> &);int cal(double);int main(){vector<double> in;input(in);//cout<<in.size()<<endl;for(int i=0;i<in.size();i++){cout<<cal(in[i]);cout<<" 阅读全文
posted @ 2011-03-29 14:23 SangS 阅读(320) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include <iomanip> using namespace std;int main(){int i=12;double sum,in,average;sum=0;for(int i=0;i<12;i++){cin>>in;sum+=in;}average=sum/12;cout<<"$";cout<<fixed<<setprecision(2)<<average<<endl;system("PAUSE"); 阅读全文
posted @ 2011-03-28 23:12 SangS 阅读(127) 评论(0) 推荐(0) 编辑
摘要: cout<<fixed<<setprecision(2)<<average<<endl;fixed不能少 阅读全文
posted @ 2011-03-28 18:57 SangS 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 错在没有看清题 题目要求打印出出现超过一次的号码与其骂娘 不如踏踏实时的再看 实在不行就放弃呗import java.util.*;class Counter { int i = 1; public String toString() { return Integer.toString(i); }}class P1002x {public static void main(String args[]){ArrayList al=new ArrayList();LinkedHashMap numbers = new LinkedHashMap();LinkedHashMap ht=sumOut( 阅读全文
posted @ 2011-03-26 11:15 SangS 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 收获:1.哈希表的使用,终于会了。。。2.Object类型辅助类的使用方法 加入到哈希表中的是一个类类型3.自动排序的实现 arrays.sort只能实现数组的排序import java.util.*;class Counter { int i = 1; public String toString() { return Integer.toString(i); }}class Main {public static void main(String args[]){ArrayList al=new ArrayList();LinkedHashMap numbers = new LinkedH 阅读全文
posted @ 2011-03-26 10:54 SangS 阅读(203) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31