#include <math.h> #include <stdio.h> int main(void) { double x, y; for (x = 1.0; x <= 3.0; x += 1.0) { for (y = 1.0; y <= 3.0; y += 1.0) { printf("%2.0f の %2.0f 乗は %.0f\n", x, y, pow(x, y)); } } return 0; }【実行結果】
1 の 1 乗は 1 1 の 2 乗は 1 1 の 3 乗は 1 2 の 1 乗は 2 2 の 2 乗は 4 2 の 3 乗は 8 3 の 1 乗は 3 3 の 2 乗は 9 3 の 3 乗は 27
▼戻る▼
「初心者のためのポイント学習C言語」 Copyright(c) 2000-2004 TOMOJI All Rights Reserved