253891489 发表于 2010-3-3 12:52

本贴以删除

本帖最后由 253891489 于 2011-5-19 16:05 编辑

本贴以删除

czjh2008 发表于 2010-3-3 13:24

呵呵!太有深意,只有看的份……

ay2010 发表于 2010-3-3 13:35

牛,呵呵!支持一个:victory:

253891489 发表于 2010-3-3 17:53

兄弟们顶起来啊

zapline 发表于 2010-3-3 18:55

出小题目就不要单独发帖了
在编程练习索引帖跟帖就行了

vienna 发表于 2010-3-4 17:56

后面那题~~

#include <iostream>
using namespace std;

bool CheckEven(int y){
   if(y%2){
      cout << "是奇数,程序继续" << endl;
      return false;
   }else{
      cout << "是偶数,请再输入一次" << endl;
      return true;
   }
}

void PrintSpace(int times){
   for (int x = 0;x < times;++x){
      cout << " ";
   }
}

int main(){
   int x,y,z;
   int SpaceTimes = 0;


   do{
      cin >> y;
   }while(CheckEven(y));
   

   for (x = 0;x < y;++x){
      cout << "*";
   }cout << endl;
   z = y - 1;

   SpaceTimes = (y - 3)/2;


   for (x = 0;x < z;++x){
      cout << "*" ;
      PrintSpace(SpaceTimes);
      cout << "*" ;
      PrintSpace(SpaceTimes);
      cout << "*" << endl;

   }

}

wxgn72 发表于 2010-3-4 19:57

页: [1]
查看完整版本: 本贴以删除