1 条题解

  • 0
    @ 2025-6-12 15:46:20
    #include<stdio.h>
    int ctof(int c)
    {
    int f;
        f=32+ c*9/5;
    	return f;	
    }
    int main()
    {
    	int c,f;
    	for(c=-100;c<=150;c=c+5)
    	{
    		printf("c=%d->f=%d\n",c,ctof(c));
    	}
    	return 0;
    	
    }
    
    • 1

    2005年春浙江省计算机等级考试二级C 编程题(2)

    信息

    ID
    9
    时间
    1000ms
    内存
    128MiB
    难度
    8
    标签
    (无)
    递交数
    17
    已通过
    6
    上传者