Advertisement
apl-mhd

virus

Apr 10th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <stdlib.h>
  4.     #include <direct.h>
  5.     #include <string.h>
  6.     #include <string>
  7.  
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13.  //ac std::string s = std::to_string(42);
  14.  
  15.  
  16.  
  17.     /*int i,j;
  18.  
  19. int val;
  20.    char str[20], temp;
  21. int a = 10;
  22. char *intStr = itoa(a);
  23. string std::str = string(intStr);
  24.  
  25. char name[] ="orko";
  26. int size = sizeof(name) / sizeof(name[0])-1;
  27. cout<<size;
  28.  
  29.  
  30. for(i=0; i<size; i++){
  31.  
  32.     for(j=0; j<size; j++){
  33.  
  34.         temp = name[j];
  35.         name[j] =name[i];
  36.         name[i]=temp;
  37.         mkdir(name);
  38.         printf("%s \n", name);
  39.     }
  40. }
  41.  
  42.     for(int i=0; i<10; i++);
  43.    // mkdir(number[0]);
  44. */
  45.     return 0;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement