arkadaşlar hocamızın vermiş olduğu cok ufak bir proje var. c++ da yazdım .herşey cok güzel fakat bir işlemi yapmıyor.diğer işlememe geçiyor memen .
#include <iostream> #include <string> using namespace std; int main() { string day; double min, hour, price; char ans; do{ cout<< "welcome to the calculater\n"; cout<< "this is a special calulator for calculating the telephone bills\n"; cout<< "price are; between 8.00-18.00 is 0.40$ per minute.\n"; cout<< " ; between 18.00-08.00 is 0.25$ per minute.\n"; cout<< " ;at weekend is constant and 0.15$ per minute.\n"; cout<< "Enter the min: "; cout<<endl; cin>> min; cout<<"Enter the day wit using shortening of their names : \n"; cout<<endl; cin>> day; cout<< "Enter the talking hours with --.-- format ! \n"; cout<<endl; cin>>hour; if ( day== "st" || day == "su" || day=="SU" || day== "ST") { price=0.15*min; cout<<price<<"$\n"; } else { if( 18.00>hour>08.00) { price=0.40*min; [bu işlemi yapmadan direk alttakine geçiyor hafta içi bir günde hangi saat yazarsam yazayım.] cout<<price<<"$\n"; } else { price=0.25*min; cout<<price<<"$\n"; }} cout<< "If you want to do this processing again please pressy for yes."; cin>> ans; cout<<"THANK YOU"; cout<<endl; } while (ans=='y');