Penjumlahan
Berikut ini cara menghitung penjumlahan dengan C++ :#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int a;
int b;
int c;
int jumlah;
cout<<"A =";
cin>>a;
cout<<"B =";
cin>>b;
cout<<"C =";
cin>>c;
cout<<"JUMLAH = ";
cout<<a+b+c;
return 0;
}
0 komentar:
Posting Komentar