摘要:
简单题,注意判断0View Code #include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>using namespace std;int main(){ //freopen("t.txt", "r", stdin); int t; scanf("%d", &t); while (t--) { int a, b; scanf("%d%d& 阅读全文
posted @ 2011-05-17 12:56
undefined2024
阅读(167)
评论(0)
推荐(0)
摘要:
高精度递推,用javaView Code import java.util.*;import java.io.*;import java.math.*;public class Main { static public void main (String[] args)throws FileNotFoundException { Scanner cin = new Scanner(new BufferedInputStream(System.in)); //Scanner cin = new Scanner(new FileInputStream("t.txt")); Bi 阅读全文
posted @ 2011-05-17 12:35
undefined2024
阅读(258)
评论(0)
推荐(0)