上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: #include<iostream.h>#include<math.h>#include<iomanip.h>//using namespace std;int shu[100];int main(){ int a,b,n,i,j,temp,jishu; double pair; while((cin>>n) && n!=0) { ... 阅读全文
posted @ 2010-05-11 10:25 VRS 阅读(170) 评论(0) 推荐(0) 编辑
摘要: #include<iostream.h>#include<math.h>double shu[201];void jian(){ int i; for(i=1;i<=200;i++) shu[i]=pow(i,3);}int main(){ int a,b,c,d; jian(); for(a=6;a<=200;a++) { for(b=2;b<a;b... 阅读全文
posted @ 2010-05-11 10:24 VRS 阅读(186) 评论(0) 推荐(0) 编辑
摘要: #include<iostream.h>#include<string.h>#include<math.h>#include<iomanip.h>char s[100];char chu[1000][100]; //由于每一次输出chu,之后如果又使用chu的话,chu里面的数据并 //没有消去,则有问题,所以开了一个字符串数组1000位,但这好 /... 阅读全文
posted @ 2010-05-11 10:24 VRS 阅读(285) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;char s[105][105],chu[105][105];char din[105];int k1,k2;int main(){ din[0]='0'; int k,n,i,j,n1,n2,a,b,c,num; cin>>n; while(n--) { k=0; i=0; memset(s,... 阅读全文
posted @ 2010-05-11 10:23 VRS 阅读(272) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int shuru[105]; int main(){ int n,jishu=0,j=1; int i,sum=0; while(cin>>n && n!=0) { for(i=0;i<n;i++) { cin>>shuru[i]; sum+=shuru[i]... 阅读全文
posted @ 2010-05-11 10:22 VRS 阅读(177) 评论(0) 推荐(0) 编辑
摘要: //Geometry Made Simple//求直角三角形第三边#include<iostream.h>#include<string.h>#include<math.h>#include<iomanip.h>//using namespace std;int main(){ int shu[3],i,j=1; char ch; double ch... 阅读全文
posted @ 2010-05-11 10:21 VRS 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #include<iostream.h>#include<math.h>//using namespace std; //公式是N=No(1/2)^(t/T),由于No=原子数(题中的w)* 810, //而N为t时刻的原子总质量(题中的d),使公式变形,得:int main() // t=5730*log((810*w)/d){ int num,sen,j=1; doub... 阅读全文
posted @ 2010-05-11 10:21 VRS 阅读(236) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////////////Deck//叠多少张牌可超桌面多少#include<iostream.h>#include<iomanip.h>//using namespace std;int main(){ int n,i; float out; cout<&l... 阅读全文
posted @ 2010-05-11 10:20 VRS 阅读(162) 评论(0) 推荐(0) 编辑
摘要: //IBM Minus One#include<iostream>#include<string>using namespace std;char s[100];int main(){ int i,n,num,k; cin>>num; n=num; while(n--) { cin>>s; k=strlen(s); for(i=0;i<k... 阅读全文
posted @ 2010-05-11 10:20 VRS 阅读(141) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////////////Martian Addition//火星人(二十进制相加)#include<iostream>#include<string>using namespace std;char s1[105],s2[105];char chu[105];int ... 阅读全文
posted @ 2010-05-11 10:19 VRS 阅读(274) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页