Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Program menggabungkan dua buah string
- // Task No.4 file 066-P03.pptx
- // Amrul Mubarak Harahap
- // 19T03 - 1901098
- #include <iostream>
- #include <string>
- #include <cstring>
- using namespace std;
- int main(){
- string kalimat1, kalimat2;
- cout << "Masukkan kalimat pertama: ";getline(cin, kalimat1);
- cout << "Masukkan kalimat kedua: ";getline(cin, kalimat2);
- cout << kalimat1 << kalimat2 << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement