level 3
#include "stdafx.h"
#include <iostream>
int main()
{
std::cout<< "enter two numbers:" <<std::endl;
int v1,v2;
std::cin>>v1>>v2;
std::cout<<"the sun of "<<v1<<"and"<<v2
<<"is"<<v1+v2<<std::endl;
return 0;
}
这是源码
2013年07月11日 01点07分
