[pear_error: message="Success" code=0 mode=return level=notice prefix="" info=""]
もうすこしで入門編もおわりなんだけど、 来週忙しそうだからまた週末にでも書けたらいい。 昼休みはまわりがみんなゲームやっててつまらない・・・ 今更ながら、小学生の子とか、持ってない子はつらいだろうなと思ってしまう。 道具がないと仲良くなれないってのはさびしいよね。 JUGEMテーマ:C言語
スロースターター・キット | 2010.09.26 Sun 17:52
JUGEMテーマ:C言語#include <stdio.h>#include <time.h>#include <stdlib.h>#include <windows.h>int Binsearch(int x, int v[], int n);int Binsearch2(int x, int v[], int n);int main(){ int v[10] = {0, 2, 5, 7, 9, 11, 15, 20, 33, 49}; int res; int i; clock_t t1, t2; t1 = clock(); for(i = 0 ; i < 10000000 ; i ++) r...
C/C++とかのプログラミング的なアレ | 2010.09.25 Sat 19:04
文字と数字を対応付けるのが難しかった。 文字列と文字の扱いがちょっとわかった。 JUGEMテーマ:C言語
スロースターター・キット | 2010.09.25 Sat 08:31
JUGEMテーマ:C言語#include <stdio.h>//------------------------------// x = x & (x - 1)を使って//もっと早いbitcountプログラムをかけ//------------------------------int BitCount(int x);int main(){ int x = 0x1b; printf("%d¥n",BitCount(x)); getchar(); return 0;}int BitCount(int x){ int count; for( count = 0 ; x != 0 ; count ++) &nb...
C/C++とかのプログラミング的なアレ | 2010.09.23 Thu 20:24
入門編に挑戦した。 基本情報まであと一ヵ月きったとか・・・早いなー 資格試験受けるの初なのでわからないけど 落ちる覚悟でがんばってみよう。 といいつつ仮面ライダーを見てしまう・・・ 勉強したこととかメモ帳代わりにここにかくだろう。 アルゴリズムの勉強は実際プログラムかくといいってどっかの偉い人がいってた。 パワフルさがほしい今日この頃 JUGEMテーマ:C言語
capura | 2010.09.23 Thu 16:32
JUGEMテーマ:C言語 #include <stdio.h>//--------------------------------//整数xの値を右にnビット回転する関数//--------------------------------int RightRot(int x, int n);int CountBits(int x);int main(){ int x = 0x1a; x = RightRot(x,2); printf("%x",x); getchar(); return 0;}int RightRot(int x, int n){ int temp = x & ~(~0 << n); int...
C/C++とかのプログラミング的なアレ | 2010.09.21 Tue 21:26
JUGEMテーマ:C言語 #include <stdio.h>//--------------------------------//xのビット位置pからnビットを反転し//他のビットはそのままにしたxを返す関数//--------------------------------unsigned Invert(unsigned x, int p, int n);int main() { unsigned x = 0x14; printf("%x¥n",x); x = Invert(x,6,4); printf("%x¥n",x); getchar(); return 0;}unsigned Invert(unsigned x...
C/C++とかのプログラミング的なアレ | 2010.09.20 Mon 19:25
JUGEMテーマ:C言語 #include <stdio.h>//--------------------------------//c2-6 位置pから始まるnビットをyの右端のnビットにセットし、//他のビットはそのままにしたxを返す関数//--------------------------------unsigned SetBits(unsigned x, int p, int n, unsigned y); int main(){ unsigned x = 0x14, y = 0xfa; printf("%x¥n",y); y = SetBits(x,4,3,y); printf("%x",y); getchar(); r...
C/C++とかのプログラミング的なアレ | 2010.09.19 Sun 20:24
JUGEMテーマ:C言語#include <stdio.h>#include <windows.h>#include <tchar.h>#include <locale.h>void CheckConditionalEquation(TCHAR*, int);int CheckOperator(TCHAR);//-------------------------------------------------- // if, while, forの中の条件式に==ではなく、=がないかチェックする//--------------------------------------------------int main(){ FILE *fp; TCHAR str[256], file_name[256], *start_point; int line_num = ...
C/C++とかのプログラミング的なアレ | 2010.09.18 Sat 19:09
JUGEMテーマ:C言語#include <stdio.h>#include <string.h>//-----------------------------------// 文字列s1中に文字列s2があったら、その文字位置を返す//-----------------------------------int Any(char *s1, char *s2);int main() { char s1[256], s2[256]; int position; scanf("%s%s",s1,s2); position = Any(s1, s2); printf("%s中に%sは%d番目にあります¥n",s1, s2, position); getch...
C/C++とかのプログラミング的なアレ | 2010.09.16 Thu 22:19
全932件中 661 - 670 件表示 (67/94 ページ)