Guest
Public paste!

Untitled

By: a guest | Mar 15th, 2010 | Syntax: C++ | Size: 0.26 KB | Hits: 34 | Expires: Never
Copy text to clipboard
  1. #include <iostream>
  2.  
  3.     int main()
  4.  
  5. {
  6.     double vesi;
  7.     double sokeri = vesi * 0.17 / 0.68;
  8.     double hiiva = 5-100;
  9.  
  10.     std::cout << "Veden m\x84\x84r\x84?" << std::endl;
  11.     std::cin >> vesi;
  12.  
  13.    
  14.  
  15.     std::cout << sokeri;
  16.    
  17.     return 0;
  18.  
  19. }