博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C 练习(三)
阅读量:6095 次
发布时间:2019-06-20

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

//生成 100~200的随机数#include 
#include
int min;int find(){ int i, y, x,max; x = rand()%101 + 100; max = x; min = x; printf("生成的随机数为:\n%d\n",x); for(i =0;i<9;i++){ y = rand()%101 + 100; printf("%d\t\n",y); if(y>max) max = y; if(y
#include
int fac(int n){ static int f = 1; f *= n; return f;}void main(){ int k; for(k=1;k<=5;k++){ printf("%d! = %d\n",k,fac(k)); }} //判断为该年第几天#include
int days(int year,int month,int day){ int i,count=0,monthArr[] = {
31,28,31,30,31,30,31,31,90,31,30,31}; if( ((year%100)&&!(year%4)) || !(year%400) ) monthArr[1] = 29; for(i=0;i

转载地址:http://gzwza.baihongyu.com/

你可能感兴趣的文章
Python基础班---第一部分(基础)---Python基础知识---计算机组成原理
查看>>
虚拟机VMware 9安装苹果MAC OSX 10.8图文教程
查看>>
POJ3694 Network
查看>>
微信小程序开发-框架
查看>>
redo、undo、binlog的区别
查看>>
DropDownList 控制日期控件显示格式
查看>>
RecycleView设置顶部分割线(记录一个坑)
查看>>
【设计模式系列】单例模式的7种写法
查看>>
汉字转拼音 (转)
查看>>
Machine Learning Techniques -6-Support Vector Regression
查看>>
会计基础_001
查看>>
Cordova 开发环境搭建及创建第一个app
查看>>
ajax请求拿到多条数据拼接显示在页面中
查看>>
小程序: 查看正在写的页面
查看>>
dedecms生成文档数据库崩溃 mysql daemon failed to start
查看>>
Linux的50个基本命令
查看>>
Objective-C中创建单例方法的步骤
查看>>
[转]无法安装MVC3,一直卡在vs10-kb2483190
查看>>
Codeforces 520B:Two Buttons(思维,好题)
查看>>
web框架-(二)Django基础
查看>>