هذا البرنامج يحول الدرجات من سلسيوسي الى فهرينهايت
#include <iostream.h>
#include <math.h>
main()
{
float celsius,fahrenheit ;
cout << " Please enter the temperature in fahrenheit degrees\n" ;
cin >> fahrenheit ;
celsius = (5.0/9.0)* (fahrenheit -32) ;
cout<<"The temperature in celsius = "<<celsius<<"Degree";
}
برنامج يعطيك حجم الدائرة بدلالة قطرها
#include <iostream.h>
main()
{
float r,area ;
cout << " Enter the radius " ;
cin >> r ;
area =3.14*r*r ;
cout <<'\n'<<"Area = " << area <<" squared unit" ;
}
هذا البرنامج يحول الدرجات من سلسيوسي الى فهرينهايت
#include <iostream.h>
#include <math.h>
main()
{
float celsius,fahrenheit ;
cout << " Please enter the temperature in fahrenheit degrees\n" ;
cin >> fahrenheit ;
celsius = (5.0/9.0)* (fahrenheit -32) ;
cout<<"The temperature in celsius = "<<celsius<<"Degree";
}
#include <iostream.h>
#include <math.h>
main()
{
float celsius,fahrenheit ;
cout << " Please enter the temperature in fahrenheit degrees\n" ;
cin >> fahrenheit ;
celsius = (5.0/9.0)* (fahrenheit -32) ;
cout<<"The temperature in celsius = "<<celsius<<"Degree";
}
برنامج يعطيك حجم الدائرة بدلالة قطرها
#include <iostream.h>
main()
{
float r,area ;
cout << " Enter the radius " ;
cin >> r ;
area =3.14*r*r ;
cout <<'\n'<<"Area = " << area <<" squared unit" ;
}
هذا البرنامج يحول الدرجات من سلسيوسي الى فهرينهايت
#include <iostream.h>
#include <math.h>
main()
{
float celsius,fahrenheit ;
cout << " Please enter the temperature in fahrenheit degrees\n" ;
cin >> fahrenheit ;
celsius = (5.0/9.0)* (fahrenheit -32) ;
cout<<"The temperature in celsius = "<<celsius<<"Degree";
}