[第一章]20110415-1.2.2.cpp : 如何把两个数加在一起

    技术2022-05-20  43

    // 20110415-1.2.2.cpp : 如何把两个数加在一起。#include "stdafx.h"#include int _tmain( int argc, _TCHAR* argv[]) { std::cout<< "Enter two numbers:"< int v1,v2; std::cin>>v1>>v2; std::cout<< "The sum of "< << " and "< << " is "< < system( "pause"); return 0; }

    最新回复(0)