operating with variables

#include<iostream> using namespace std; int main() { //to say the variables int a,b; int result; //the calculating process a=13; b=7; a=a+2; result=a-b; //print the result cout<<result; //terminate the program return 0; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.