ตั้งค่าการอ่าน

ค่าเริ่มต้น

  • เลื่อนอัตโนมัติ
    แบบฝึกเขียนภาษา C++ สำหรับนักโปรแกรมเมอร์ตัวน้อย

    ลำดับตอนที่ #5 : -----ตัวอย่างแนวทางคิด

    • อัปเดตล่าสุด 2 ต.ค. 51


    ตัวอย่างแนวทางคิด

    #include<iostream>

    using namespace std;

     

    int main ()

    {

         int   feet, inches,;

         float     centimeters;

        

         cout      << "Please enter length in feet: ";

         cin       >> feet;

         cout      << "\n";

        

         cout      << "Please enter length in inches: ";

         cin       >> inches;

         cout      << "\n";

        

         cout      << "The length is " << feet << " feet "

                   << inches << " inches" << "." << "\n\n";

        

         centimeters = (feet*30) +(inches*2.5);

        

         cout      << "The length in centimeters is " << centimeters <<"." << "\n\n";

        

         system ("pause");

         return 0;

    }// end int main()

     

    ติดตามเรื่องนี้
    เก็บเข้าคอลเล็กชัน

    ผู้อ่านนิยมอ่านต่อ ดูทั้งหมด

    loading
    กำลังโหลด...

    อีบุ๊ก ดูทั้งหมด

    loading
    กำลังโหลด...

    ความคิดเห็น

    ×