摘要: Tips:使用一个临时数组c[1000] ,将输入的数据一边复制一边处理,碰到空格时就将前面的字符反向输出即可 1 #include 2 #include 3 ///使用一个临时数组c[1000] ,将输入的数据一边复制一边处理 4 void reverse(char s[]){ 5 cha... 阅读全文
posted @ 2015-05-25 21:23 CSUER 阅读(651) 评论(0) 推荐(0) 编辑
摘要: Tips:先求出平均数再分别计算各数与平均数的差相加,注意两个测试结果之间要空一行 1 #include 2 using namespace std; 3 int main() 4 { 5 int T,count=0; 6 while(cin>>T) 7 { 8 ... 阅读全文
posted @ 2015-05-25 21:19 CSUER 阅读(294) 评论(0) 推荐(0) 编辑