Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- main(){
- char h=0, nama[4][3][13];
- cout<<"Masukkan daftar nama : \n\n";
- for(int s=0; s<3; s++){
- cin >> nama [4][3][13];
- }
- for(int i=0; i<4; i++){
- cout<<"Kelompok "<< h+1;
- for(int s=0; s<3; s++){
- cout<<s+1 << "." <<nama[i][s];
- }
- h++;
- cout<<"\n";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement