哈工大c语言-练习题教学内容.docVIP

  • 14
  • 0
  • 约9.73千字
  • 约 10页
  • 2020-04-19 发布于浙江
  • 举报
哈工大c语言-练习题 求用户输入的两个数的商,程序运行时,以如下格式输入数据: Input two integers:4 2↙ 请改正程序中的错误,使它能得出正确的结果。 #include stdio.h main() { int a, b, c; printf(Input two integers:); scanf(%d,%d, a, b); c = a\b; printf(The quotient of a and b is :%d, c); } # include stdio.h int main () { int a,b,c; printf (Input two integers:); scanf (%d %d,a,b); c=a/b; printf (The quotient of a and b is :%d\n,c); return 0; } 使用const常量定义圆周率pi=3.14159,编程从键盘输入圆的半径r,计算并输出圆的周长和面积。输出的数据保留两位小数点。 输入格式要求:%lf 提示信息:Input r: 输出格式要求: printf WITHOUT width or precision specifications:\n circumference = %f, area = %f\n prin

文档评论(0)

1亿VIP精品文档

相关文档