Advertisement
piffy

DalCaJava-ES1

Oct 19th, 2017
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. /** CONVERSIONE - ESERCIZIO 1 **/
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  int a=2, b=3;
  8.    
  9.    cout << "Risultato: ";
  10.    cout << a+b << endl;
  11.    
  12.    return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement