Area = π*r*r
STEP 1: Take radius as input from the user using std input. STEP 2: Calculate the area of circle using, area = (3.14)*r*r STEP 3: Print the area to the screen using the std output.
p> ライブ デモンストレーション
#include <stdio.h> int main(){ int r = 8; float area = (3.14)*r*r; printf("The area of the circle is %f",area); return 0; }
The area of the circle is 200.96
以上がCプログラミングで円の面積を求めるの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。