Add two numbers
add two numbers รับค่า 2 ตัวเลข
#include<iostream.h>
main()
{
int a;
int b;
cout<<"Enter First Number: ";
cin>>a;
cout<<"Enter Second Number:";
cin>>b;
cout<<"REsult is = "<<a+b<<endl;
system ("pause") ;
}
แสดงค่าใน "....." ว่า "Enter First Number"
#include<iostream.h>
main()
{
int a;
int b;
cout<<"Enter First Number: ";
cin>>a;
cout<<"Enter Second Number:";
cin>>b;
cout<<"REsult is = "<<a+b<<endl;
system ("pause") ;
}
-----------------------------------------------
โค้ดรับค่า 2 ตัว โดยกำหนดให้
int a ค่าที่ 1
int b ค่าที่ 2
int a ค่าที่ 1
int b ค่าที่ 2
แสดงค่าใน "....." ว่า "Enter First Number"
cout<<"Enter First Number: ";
ไม่มีความคิดเห็น:
แสดงความคิดเห็น