#include <iostream>using namespace std;#include <stdio.h>int main(){ // << 位元左移 // 1<<n = 2的n次方 // m<<n = m*2^n //getchar读取一个字符 //gets() 读取一行 遇到回车结束 int num,count,i; char a[1000]; cin >> num; getchar(); while(num--) { count=0; gets(a); for... Read More
posted @ 2012-03-29 22:43 潘小雨 Views(216) Comments(0) Diggs(1) Edit