C++ primer plus程序2.2《carrots.cpp》

//程序清单2.2
//carrots.cpp  --  food processing program
//uses and display a variable
#include <iostream>

int main()
{
    using namespace std;
    
    int carrots;                                            //declare an interger variable
    
    carrots = 25;                                         //assign a value to the variable 
    
    cout<<"I have";                                 
    
    cout<<carrots;                                       //display the value of the variable 
    
    cout<<"carrots";
    
    cout<<endl;
    
    carrots=carrots - 1;                                 //modify the variable
    
    cout<<"Crunch, crunch. Now I have " << carrots << "carrots."<<endl;
    
    return 0;
    
}
 

上一篇:Pytorch 学习笔记3 Autogard:Pytorch中的梯度计算


下一篇:FasterRcnn中的tensor方法resize_()和copy_()