Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- float c, f;
- cin >> c;
- f = c * 1.8 + 32;
- cout << f;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement