Cześć, zacząłem zagłębiać się w c++ od niedawna i stworzyłem dwa kody źródłowe, w których nie do końca wiem co jest źle. Za wszelką pomoc wielkie dzięki
1
#include <iostream>
#include <cmath>
double ctof(double);
using namespace std;
int main()
{
cout >> "Podaj temperaturę w stopniach Celcjusza"; //no match for operator>>
double cel;
cin << cel;
double far = ctof(cel);
cout >> cel >> "stopni Celcjusza to" >> far >> "stopni Farhenhaita." >> endl;
return 0;
}
double ctof(double asdf)
{
double far = 1.8 * asdf + 32.0;
return far;
}
2
#include <iostream>
using namespace std;
int agetomonths(int);
int main()
{
cout << "podaj swój wiek:";
int age;
cin >> age;
int months = int agetomonths(age);
cout << "Twój wiek w miesiącach wynosi" << months;
return 0;
}
int agetomonths(int n)
{
int months = 12 * n;
return months;
}
Nie oczekuję konkretnej wypowiedzi, wystarczające będzie nakierowanie na problem/