📜  如何使用 c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:51.856000             🧑  作者: Mango

代码示例1
#include 
using namespace std;
int main(){
   for(int i=1; i<=6; i++){
      /* This statement would be executed
       * repeatedly until the condition
       * i<=6 returns false.
       */
      cout<<"Value of variable i is: "<