2012年5月24日

POJ 1001 Exponentiation 高精浮点乘方

摘要: //POJ 1001 Exponentiation (百炼叫test)高精浮点乘方//by 澄哥#include <iostream>#include <cstring>#define MAX 200using namespace std;char* cut_zero(char *res){ int headZero; int len = strlen(res); for (headZero = 0; headZero < len-1; headZero++) if (res[headZero]!='0') break; if(hea... 阅读全文

posted @ 2012-05-24 15:03 澄哥 阅读(615) 评论(0) 推荐(0)

POJ 1000 A+B Promble 巨水

摘要: POJ 1000 A+B Promble 巨水#include <iostream>using namespace std;int main(void){ int a,b; cin >> a >> b; cout << a+b << endl; return 0;} 阅读全文

posted @ 2012-05-24 14:49 澄哥 阅读(175) 评论(0) 推荐(0)

导航