Input:
Output:
1 2 3 4 5 6 7 8 9 10 11 | #include <iostream.h> #include <conio.h> int main() { cout<< "Addition Question with 2 variable = A + B \n\n" ; int A = 765; int B = 345 ; cout << "\t" << A << " + " << B <<" = " << A + B << endl; getch(); return 0; }// end main |
Output:
Addition Question with 2 variable = A + B 765 + 345 = 1110
No comments:
Post a Comment