Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1942385
  • 博文数量: 424
  • 博客积分: 1291
  • 博客等级: 中尉
  • 技术积分: 2682
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-13 01:34
个人简介

linux oracle 网络安全 编程

文章分类

全部博文(424)

文章存档

2016年(22)

2015年(53)

2014年(57)

2013年(242)

2012年(50)

发布时间:2012-12-11 08:27:01

#include <stdio.h>#define TATAL 1000int main(){   float amount,sum;   int i;   for(i=1,amount=0;i<=1000;i++)   {    printf("input the amount : \n");    scanf("%f",&amount);    sum=sum+amount;  ......【阅读全文】

阅读(718) | 评论(2) | 转发(0)

发布时间:2012-12-09 19:45:31

#include <stdio.h>int main(){ int a,b,c; int max(int x,int y); printf("please input a and b :"); scanf("%d,%d\n",&a,&b); c = max(a,b); printf("the max number is %d\n",c); return 0; } int max(int x,int y){ int z; if (x > y) z=x; els......【阅读全文】

阅读(569) | 评论(2) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册