Jump to content

ML

From Wikipedia, the free encyclopedia
(Redirected from Ml)

ML or ml may refer to:

Computing and mathematics

[edit]

Languages

[edit]

Measurement

[edit]
  • Megalitre or megaliter (ML, Ml, or Mℓ), a unit of volume
  • Millilitre or milliliter (mL, ml, or mℓ), a unit of volume
  • Millilambert (mL), a non-SI unit of luminance
  • Richter magnitude scale (ML), used to measure earthquakes
  • Megalangmuir (ML), a unit of exposure of a surface to a given chemical species (convention is 1 ML=monolayer=1 Langmuir)

Other

[edit]

See also

[edit]


  1. include <iostream>

using namespace std; class student{ protected: int roll_no; public: void get_no(int a) { roll_no=a; } void put_number(void) { cout<<"Roll no:"<<roll_no<<"/n"; } }; class test: public student{ protected: float part1,part2;

public: void get_marks(float x, float y){ part1=x; part2=y; } void put_marks(void){ cout<<"marks obtained:"<<"/n" <<"part1="<<part1<<"\n" <<"part2="<<part2<<"/n"; } };

class sport{ protected: float score; public: void get_score(float s){ score=s; } void put_score(void){ cout<<"sports wt :"<<score<<"/n"; } }; class result: public test,public sport{ float total; public: void display(void); }; void result::display(void){ total= part1 + part2 + score; put_number(); put_marks(); put_score(); cout<<"total score:"<<total<<"/n"; } int main(){ result stud; stud.get_no(1234); stud.get_marks(27.5,33.0); stud.get_score(6.0); stud.display(); }