Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std ;
  4. int main (){
  5.    
  6.    int nbLignes , nbMots ;
  7.    
  8.    string ligne ;
  9.    
  10.    cin >> nbLignes >> nbMots ;
  11.    
  12.   // cout << nbLignes <<" " << nbMots ;
  13.    
  14.       for ( int i = 0 ; i <= nbLignes ; i++ ){
  15.      
  16.          getline(cin, ligne);
  17.         // cout << ligne << endl;
  18.          
  19.          }
  20.          
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement