Z_Y.cpp
上传用户:jinqiu1010
上传日期:2021-09-06
资源大小:3082k
文件大小:0k
开发平台:

C/C++

  1. // Z_Y.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include"stdio.h"
  5. int main(int argc, char* argv[])
  6. {
  7. float r,x;
  8. float g,b;
  9. float c;
  10. while(1)
  11. {
  12. printf("请输入电阻r电感x:n");
  13. scanf("%f",&r);
  14. if(r==-1)
  15. break;
  16. else
  17. {
  18. printf("r=%fn",r);
  19. scanf("%f",&x);
  20. printf("x=%fn",x);
  21. c=r*r+x*x;
  22. g=(float)r/c;
  23. b=(float)x/c;
  24.     printf("导纳为:n");
  25. printf("%f+j%fn",g,b);
  26. }
  27. printf("n输入-1结束!n");
  28. }
  29. return 0;
  30. }