Da ich in C++ noch ein Anfänger bin benötige ich eure Hilfe (error C1075)
Code:
#include 'stdafx.h'
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <stdlib.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int select =-1;
double f;
double c;
while (select ==-1)
{
cout << '1 Drücken um zu beginnen, 0 um zu Schließen.';
getchar();
cin >> select;
if (select ==1)
{
cout << 'Fahrenheit eingeben um in Celsius umzurechnen.';
cin >> f;
c= (f-32) * 5 / 9;
cout <<'Celsius =' << endl << c;
}
if (select ==0)
exit (0);
}
MultiStrikeAUT Gast |