What is below??
Does anyone know what is below….
#include
using namespace std;
int main()
{
cout << "7+3=" << 7+3 << endl;
cout << "7.0/3.0=" << 7.0/3.0 << endl;
cout << "7%3=" <<7 % 3 << endl;
cout << "6%3=" << 6 % 3 << endl;
cin.get();
return 0;
}
haha...well this is what I am trying to learn...this is something I have created....Enjoy...