C程序代码.doc
文本预览下载声明
C程序代码
导读:就爱阅读网友为您分享以下“C程序代码”的资讯,希望对您有所帮助,感谢您对92的支持!
#includelt;stdio.hgt;
main()
{
printf(quot;hellow world!quot;);
}
#includelt;stdio.hgt;
int main()
{
int x,y,m;
printf(quot;input two numbers\nquot;);
scanf(quot;%d%dquot;,amp;x,amp;y);
m=x+y;
printf(quot;%dquot;,m);
}
#includelt;stdio.hgt;
int main()
{
int C,F;
printf(quot;please input the F temperature\nquot;);
scanf(quot;%dquot;,amp;F);
C=(5/9)*(F-32);
if(Flt;0) printf(quot;you have inputted the wrong temperaturequot;);
显示全部