美文网首页
无标题文章

无标题文章

作者: 醉迹漫青衫 | 来源:发表于2017-10-30 20:50 被阅读0次

...
作业一:求整数的最后一位

include <stdio.h>

int main()
{
int a;
printf("请输入一个整数:");
scanf("%d",&b);
printf("整数的最后一位数为:%d",b%10);
return 0;
}
...
作业二:最大值

include <stdio.h>

int main ()
{
int a,b,c,max;
printf("请输入三个数:");
scanf("%d %d %d",&a,&b,&c);
if(a>b&&a>c)
{
max=a;
}
if(b>a&&b>c)
{
max=b;
}
if(c>b&&c>a)
{
max=c;
}
printf("最大值为:%d",max);
return 0;
}
...
作业三:季节输出

include <stdio.h>

int main ()
{
int month;
printf("请输入月份:");
scanf("%d",&month);
if(month>=3&&month<=5)
{
printf("%d月份为春季",month);
}
if(month>=6&&month<=8)
{
printf("%d月份为秋季",month);
}
if(month>=9&&month<=11)
{
printf("%d月份为夏季",month);
}
if(month>=1&&month<=2||month==12)
{
printf("%d月份为冬季",month);
}
return 0;
}
....

相关文章

  • 无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章 无标题文章无标题文章无标题文章无...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • fasfsdfdf

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章 无标题文章 无标题文章无标题文章 无标题文章 无标题文章

网友评论

      本文标题:无标题文章

      本文链接:https://www.haomeiwen.com/subject/cqbmpxtx.html