打印出偶数

时间:2012-08-09 08:01:31

标签: c++

我只想在这里问你的帮助。我是c ++编程的新手。如何打印100 - 200范围内的偶数。我尝试编写一些代码,但没有成功。这是我的代码。我希望,有人可以帮助我。会非常欣赏这一点。感谢。

include <stdio.h>

void main()
{
    int i;
    for (i= 100; i<= 200; i += 2){
        print i;
    }
}

4 个答案:

答案 0 :(得分:4)

嗯,很简单:

#include <iostream> // This is the C++ I/O header, has basic functions like output an input.

int main(){ // the main function is generally an int, not a void.
   for(int i = 100; i <= 200; i+=2){ // for loop to advance by 2.
       std::cout << i << std::endl; // print out the number and go to next line, std:: is a prefix used for functions in the std namespace.
   } // End for loop
   return 0; // Return int function
} // Close the int function, end of program

您使用的是C库,而不是C ++库,以及在C ++中没有被称为print的函数,也没有使用C。此外,没有void main函数,请改用int main()。最后,您需要在std::cout前面endl,因为它们位于std命名空间中。

答案 1 :(得分:0)

您的代码看起来不错....只需要更改打印部件

  #include <stdio.h>
  int main()
  {
    for (int i= 100; i<= 200; i += 2){
      printf("%d",i);
    }
    return 0;
  }

答案 2 :(得分:0)

使用以下代码:

#include <iostream>

int main()
{
    int i;
    for (i= 100; i<= 200; i += 2){
        std::cout << i << std::endl;
    }
    return 0;
}

答案 3 :(得分:0)

这可能会有所帮助!

 #include <iostream>
using namespace std;
int main()
{
    for (int count = 100; count <= 200; count += 2)
    {
        cout << count << ", ";
    }
    cout << endl;
    return 0;

}