Advertisement
Allasview

Chap4(task15) flashdisk

Dec 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main(int argc, const int * argv[]) {
  4.  
  5. int diskSpace, filmsQuantity;
  6. const int filmMb = 760;
  7. std::cout << "How many films on the Flash Disk \n";
  8. std::cout << "Please Enter the Flash Disk Space (In Gb) : \n";
  9. std::cin >> diskSpace;
  10. filmsQuantity = diskSpace * 1024 / filmMb;
  11. std::cout << "You can download " << filmsQuantity << " films on your flash disk. " << std::endl;
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement