私はオームの法則プログラムを作ろうとしています。V = IR。
#include <stdio.h>
int main(int argc, const char * argv[]) {
int V,I,R;
printf("please enter the value of the current if the value is not known make I=0 ");
scanf("%d", &I);
printf("please entre the value of the resistance if the value is not known make R=0");
scanf("%d", &R);
printf("please enter the value of the voltage, if unknown make V=0");
scanf("%d", &V);
if (V == 0)
V = I*R;
{
printf(" V = %d",V);
}
else if (I==0)
I = V/R;
{
printf("I = %d ",I);
}
else
R = V/I;
{
printf("R= %d",R);
}
return 0;
}
私は初心者ですが、コードを改善するにはどうすればよいですか? どんな助けでも大歓迎ですありがとう。