Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. //autor: Kacper Warot
  5.  
  6. float cel (float k)
  7. {
  8. k-=273.15;
  9. return k;
  10. }
  11. int main()
  12. {
  13. int n;
  14. cin >> n;
  15. cout << cel(n);
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement