Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- // считайте два числа и выведите их частное
- double x,y;
- cin >> x >> y;
- cout << x/y;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement