/* 15から37引いた値を計算して「15から37を引いた値は-22です。」 と表示させるプログラム作成せよ。 */ #include int main(void) { printf("15から37を引いた値は%dです。\n", 15 - 37); return 0; }