上一页 1 ··· 9 10 11 12 13 14 下一页
摘要: //一道物理题,VR=VS*R*C*w/sqrt(R^2*C^2*w^2+1)#include<iostream>#include<iomanip>#include<cmath>using namespace std;int main(){ double VS,R,C; int n,s; cin>>VS>>R>>C>&g... 阅读全文
posted @ 2010-05-11 10:11 VRS 阅读(345) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////1068(其他进制是否回文数)#include<iostream>using namespace std;unsigned int st[100];//判断数组st是否前len位是否为回文数bool deter_palin(int len){ int i; bool flags=1; for(i... 阅读全文
posted @ 2010-05-11 10:10 VRS 阅读(230) 评论(0) 推荐(0) 编辑
摘要: /////////////////////////////////////////////////////////1068摩斯密码//直接模拟#include<iostream>#include<algorithm>using namespace std;char code[35][2][5]; //记录29个摩斯密码 char str[150]; //记录输入的原码cha... 阅读全文
posted @ 2010-05-11 10:09 VRS 阅读(293) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////////////Color Me Less//最接近颜色点#include<iostream.h>#include<math.h>int shu[16][3];int i,j;void shuru(){ for(i=0;i<16;i++) for(... 阅读全文
posted @ 2010-05-11 10:08 VRS 阅读(212) 评论(0) 推荐(0) 编辑
摘要: //A New Growth Industry//细菌培养基#include<iostream>using namespace std;int shu[25][25],guodu[25][25];int d[16];int main(){ int n,i,j,tianshu,temp; cin>>n; while(n--) { memset(shu,0,sizeof(sh... 阅读全文
posted @ 2010-05-11 10:06 VRS 阅读(271) 评论(0) 推荐(0) 编辑
摘要: //Financial Management//求平均数#include<iostream>using namespace std;int main(){ int i=12; float n,sum=0; while(i--) { cin>>n; sum+=n; } cout<<"$"<<sum/12.0<<endl; return ... 阅读全文
posted @ 2010-05-11 10:05 VRS 阅读(131) 评论(0) 推荐(0) 编辑
摘要: //I Think I Need a Houseboat//以圆面积扩散,要几年淹没#include<iostream.h>#include<math.h>#define pi 3.1415926int main(){ float i,j; int n,s;// cout<<int(624*pi/100+0.5); cin>>n; s=n; whil... 阅读全文
posted @ 2010-05-11 10:05 VRS 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 广搜#include<iostream>#include<queue>using namespace std;int Map[8][2]={{-1,0},{1,0},{0,-1},{0,1},{-1,-1},{-1,1},{1,-1},{1,1}};char Gra[25][25];struct node { int x; int y;}start,temp;int mai... 阅读全文
posted @ 2010-05-11 10:03 VRS 阅读(284) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ float num,sum,i; while(cin>>num && num!=0.00) { i=2; sum=0; while(1) { sum+=1/i; if(sum>=num) { cout<<i-1<<" ca... 阅读全文
posted @ 2010-05-11 10:02 VRS 阅读(154) 评论(0) 推荐(0) 编辑
摘要: //这里有新的输入输出格式,注意其实输入格式跟输出格式是分开的,即系就算某一输出改变在另一输入前,//只要输出格式符合要求就行//用三重for做#include<iostream>#include<string>using namespace std;int st[3][30],sttemp[3][30];char s[10000];void insert(int n){ ... 阅读全文
posted @ 2010-05-11 10:01 VRS 阅读(515) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 下一页