博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
作业3(4)
阅读量:5160 次
发布时间:2019-06-13

本文共 576 字,大约阅读时间需要 1 分钟。

#include
int main(void){ int year; printf("Enter The year:");/*输出*/ scanf("%d",&year);/*从键盘输入*/ while(year!=-1){ if((year%4==0&&year%100!=0)||(year输出这一年是闰年*/%400==0)){/*判断当这个数字能被4整除且不能被100整除或者能被400整除*/ printf("The year is 闰年\n");/ printf("Enter The year:"); scanf("%d",&year); } else{/*判断*/ printf("The year is not 闰年\n"); printf("Enter The year:"); scanf("%d",&year);/*从键盘输入年*/ } } return 0;}

转载于:https://www.cnblogs.com/chaoyue0806/p/3378445.html

你可能感兴趣的文章
springboot jar包运行中获取资源文件
查看>>
基于FPGA实现的高速串行交换模块实现方法研究
查看>>
Java Scala获取所有注解的类信息
查看>>
delphi ,安装插件
查看>>
case when then的用法-leetcode交换工资
查看>>
11.28.cookie
查看>>
BeanShell简介
查看>>
python字符串操作
查看>>
不同程序语言的注释和变量要求
查看>>
语言基础(9):static, extern 和 inline
查看>>
邮件和短信验证码
查看>>
(转)Android studio 使用心得(五)—代码混淆和破解apk
查看>>
构建之法阅读笔记03
查看>>
ES5_03_Object扩展
查看>>
Apache-ab 接口性能测试
查看>>
EF 4.1 Code First Walkthrough
查看>>
常用MySQL语法
查看>>
bzoj 2600: [Ioi2011]ricehub
查看>>
创建数据库,表
查看>>
工厂模式
查看>>