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
// ********************************************** | |
// 入力した問題を | |
// マウスクリックで連続表示 | |
// | |
// ********************************************** | |
//フォントを準備する | |
PFont font = createFont("FFScale",32); | |
//問題設定 |
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
// ********************************************** | |
// ランダムな問題を | |
// マウスクリックで連続表示 | |
// | |
// ********************************************** | |
//フォントを準備する | |
PFont font = createFont("FFScale",32); | |
void setup(){ |
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
// ********************************************** | |
// | |
// ランダムな問題を連続表示 | |
// | |
// ********************************************** | |
//フォントを準備する | |
PFont font = createFont("FFScale",32); | |
void setup(){ |
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
// ********************************************** | |
// | |
// ランダムな1問を表示 | |
// | |
// ********************************************** | |
//フォントを準備する | |
PFont font = createFont("FFScale",32); | |
//画面の大きさを決める |
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
// ********************************************** | |
// | |
// 1問だけ表示 | |
// | |
// ********************************************** | |
//フォントを準備する | |
PFont font = createFont("FFScale",32); | |
//画面の大きさを決める |
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
size(640,480); |
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
/***************************************** | |
* 時計ランダム表示 (iPad PR0C0D1N6用) | |
* 横置き | |
* ボタンクリックで表示の切替 | |
* Hiroyuki Nakano | |
* 2012.12.04 | |
*****************************************/ | |
boolean qflag = false; | |
PFont font=createFont("FFScala", 32); |
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
/***************************************** | |
* 1けたのたし算ランダム表示 (iPad PR0C0D1N6用) | |
* 横置き | |
* ボタンクリックで表示の切替 | |
* Hiroyuki Nakano | |
* 2012.12.03 | |
*****************************************/ | |
String[] Quest = new String[81]; | |
int[] Ans = new int[81]; | |
int[] rS = new int[81]; |
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
/***************************************** | |
* 九九ランダム表示 (iPad PR0C0D1N6用) | |
* 横置き | |
* ボタンクリックで表示の切替 | |
* Hiroyuki Nakano | |
* 2012.12.02 | |
*****************************************/ | |
String[] Quest = new String[81]; | |
int[] Ans = new int[81]; | |
int[] rS = new int[81]; |
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
Public Sub Sample() | |
Dim i As Integer | |
i = 1 | |
Do | |
Cells(i, 10) = GetShortenedLinkGoogl(Cells(i, 1)) | |
i = i + 1 | |
Loop Until Cells(i, 1) = "" | |
End Sub | |
http://www.ka-net.org/office/of38.htmlを参照 |