As She Hot ?

KishanW

Member
Apr 12, 2007
9,629
24
0
USA
Michael said:
echcharama hot nehe ithin :eek: :lol: :lol: onewata wada hot wenna gihin wage meya :rolleyes: :lol: :lol: :lol: :lol: :lol:
eekanam aththa wagee
image002jo9.gif
image002jo9.gif
image002jo9.gif
:rofl: :rofl: :rofl:
 

sanzilla jackcat

Well-known member
  • Oct 3, 2008
    6,744
    3,331
    113
    ෆ්ලුජා නගරය
    what is her temperature ?
    I thik hot is more than 70 C and just warm is between the 20 C and the 70 C. So therefore I need the temperature as a input to tell is she hot or not

    Code:
    #include <iostream>
    using std::cout ;
    using std::cin ;
    
    int main()
    {
          int temperature_of_her ;
       cout << " Please Enter Her Temperature : " ;
       cin >> temperature_of_her ;
      
       cout << "Processing " << endl ;
       if ( temperature_of_her > 70 ) 
       {
                cout << "Yes She is Hot " << endl;
       }else
       {
                cout << " No she is not hot " << endl;
       }
       return 0;
    }