This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$screen_names = array(); // 検索したいスクリーンネームをarrayのかたちで入れてください | |
for ($i=0 ; $i<10; $i++){ | |
$screen_names[] = "hogepiyo".$i; | |
} | |
$tas = new TwitterAccountSearch(); | |
$tas->Set($screen_names); | |
$tas->Search(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iomanip> | |
#include <string> | |
class Caesar | |
{ | |
public: | |
Caesar(); | |
void setString(std::string *in_str); | |
void run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
class HindoCheck | |
{ | |
public: | |
void check(std::string in_str); | |
private: | |
int result[26]; | |
}; |