#include "画像の名前"
int main ( void ){
BMPnew ();
int x, y;
int cr = BMP_width3/10;
int cg = BMP_width5/10;
int cb = BMP_width*7/10;
int cy = BMP_height/2;
for ( x = 0; x < BMP_width; x++ ){
for ( y = 0; y < BMP_height; y++ ){
if ( ( cr-50) <= x ) && ( x <= (cr+50) ) && ( (cr-50) <= y ) && ( y <= (cy+50) ){
BMPpoint ( x, y, 255, 0, 0 );
} else if ( ( cg-50) <= x ) && ( x <= (cg+50) ) && ( (cy-50) <= y ) && ( y <= (cy+50) ){
BMPpoint ( x, y, 0, 255, 0 );
} else if ( ( cb-50) <= x ) && ( x <= (cb+50) ) && ( (cy-50) <= y ) && ( y <= (cy+50) ){
BMPpoint ( x, y, 0, 0, 255 );
}
}
}
BMPsave ();
return 0;
}
上記をコンパイルしたところ、12行目の28の'('が、expected identifierとなってしまいます。
解決方法お願いします。
回答3件
あなたの回答
tips
プレビュー