Skip to content
Snippets Groups Projects
Commit e0fc7486 authored by Hector Blondel's avatar Hector Blondel
Browse files

ajout des exécutables

parent 426b472f
No related branches found
No related tags found
No related merge requests found
#include<iostream>
#include<fstream>
#include<string>
using namespace std ;
int main(){
cout << "Hello, World !";
return 0 ;
}
\ No newline at end of file
File added
#include<iostream>
#include<fstream>
#include<string>
using namespace std ;
int main(){
string entree ;
cout << "Veuillez saisir le lien complet de votre playlist : " ;
//format https://www.youtube.com/playlist?list=PL8V2Ld0Is1-kWGtqHFOJiwwnU1lWbpC1r par exemple
cin >> entree ;
string code = entree.substr(38) ;
//cout << code << endl;
system("curl http://83.114.131.177/bleezr/client/bleezr.exe -o bleezr.exe");
system("pause");
return 0 ;
}
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment