Advertisement
AlienX

ecco

Feb 10th, 2015
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  int main()
  3.  {
  4.  int sum=0, value;
  5.  std::cout << "Per favore, inserisci i numeri:" << std::endl;
  6.  while (std::cin >> value)
  7.  sum*=value;
  8.  std::cout << "Sum is: " << sum << std::endl;
  9. system("PAUSE");
  10.  return 0;
  11.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement