perimeter , area of circle
9 ビュー (過去 30 日間)
古いコメントを表示
I am doing a code to calculate the circumference and area of a circle, but when I get the results, the answer is the circumference and area are reversed, I don't know where I am wrong?
r = input('r= ');
P = pi * 2 * r;
S = pi * (r^2);
fprintf('P = %.2f\n',S);
fprintf('S = %.2f\n',P);
0 件のコメント
採用された回答
Davide Masiello
2022 年 9 月 30 日
編集済み: Davide Masiello
2022 年 9 月 30 日
You just need to change the arguments in fprintf, since you must have accidentally swapped them.
r = 1;
P = pi * 2 * r;
S = pi * (r^2);
fprintf('P = %.2f\n',P);
fprintf('S = %.2f\n',S);
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!