Advertisement
Guest User

Untitled

a guest
Aug 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     float a; //ความเร่ง
  8.     float t; //เวลา
  9.     float v; //ความเร็ว
  10.     float s; //
  11.    
  12.     std:: cout<<"Enter a : ";
  13.     std:: cin >> a;
  14.    
  15.     std:: cout<<"Enter v : ";
  16.     std:: cin >> t;
  17.    
  18.     v = a*t;
  19.     s = v*t;
  20.    
  21.     std::cout << "ค่า v " << v < <endl ;
  22.     std::cout << "ค่า s "<< s;
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement