関数「1」を作成しましたが、ユーザーに「関数「1」を繰り返しますか?」と尋ねたいのですが、何が問題になっていますか?これが私のコードです:
#include <cstdlib>
#include <iostream>
using namespace std;
void temperature()
{
float c,f;
cout<<"Áveskite temperatørà pagal Celsijø: ";
cin>>c;
f=(c*1.8)+32;
cout<<"Temperatûra pagal Farenheità: ";
printf("%2.2f", f);
cout<<endl;
}
int main()
{
setlocale(LC_ALL,"Lithuanian");
temperature();
char isjungti;
cout<<"Paversti dar vienà temperatûrà?(T)";
cin>>isjungti;
if(isjungti == 'T' || 't')
{
return temperature(); //I get an error here.
}
system("PAUSE");
return EXIT_SUCCESS;
}
手伝ってくれてありがとう。