Answers for "adding variables c++"

C++
0

adding variables c++

#include <iostream>
using namespace std;

int main() 
{
	int x = 1;
	int y = 1;
	int total = x + y;
	cout << total;
	return 0;
}
Posted by: Guest on August-01-2021

Browse Popular Code Answers by Language