- 2

Write a c++ program that print the name of your group in one line

13th May 2017, 8:15 AM
annouar
annouar - avatar
2 Antworten
0
#include <iostream> using namespace std; int main(){ string gname; cin >> gname; cout << "Group name: " << gname << endl; return 0; }
5th Nov 2017, 6:02 PM
Rain
Rain - avatar
0
#include <iostream> using namespace std; int main(){ string gname; cin >> gname; cout << "C++ is cool " << gname << endl; return 0; }
7th Sep 2021, 3:20 PM
RAHUL