このようなもの:
/*Simple program to calculate the circumference of a circle. */
#include <stdio.h>
#define PI 3.14159
int main()
{
float r1 /*R1 being the radius.*/
/* Since the Circumference is R * PI * 2, or R2 * PI */
/* we do the following */
printf("This is a program that calculates the Circumference\n");
printf("Of a circle. Please enter your radius.\n");
scanf("%f", r1"\n"); /*This being the first number.*/
printf("Your radius times PI times 2 is\n");
/*Now it calculates the circumference. */
printf("%f", (r1 * PI * 2)"\n");
}
私はCを使って数学的なこともやっているので、それについてのローダウンも役に立ちます。たとえば、#define
Piを数値またはその性質の定数として使用し、それを True/False ステートメントで使用できるかどうか疑問に思います。どんな助けでも大歓迎です。