第二个hello word

我写的第二个hello word!!没什么特别,做个记录而已。

//my second  hello word

#include <iostream>

int main() {

  using namespace std;

  int number;
  cout < < "hello word !\n\n";
  cout << "Enter a number :";
  cin >> number;
  cout < < endl;
  int i;
  int e;
  for (i=0;i<number;i++) {
         e=i+1;
         cout << e << " hello word!\n";
         if(i==99)
             i=number;
          if(i>100)
             cout < < "\nMost number is 100 !\n";
        }
  cout << "\nThat's all !\n\n";
  return 0;
}

3条评论在“第二个hello word”

写下你最简单的想法