输入一个百分制的成绩t后,按下式输出它的等级。等级为:90~100为A,80~89为B,70~79为C,60~69为D,0~59为E。样例输入98样例输出A#include"stdio.h"int
main(){ char grade; double score; int temp...
分类:
其他好文 时间:
2014-05-26 00:27:15
阅读次数:
225
1 //题目:找出一个二维数组的“鞍点”,即该位置上的元素在该行上最大,在该列上最小。也可能没有鞍点。
2 // 3 #include "stdio.h" 4 #include 5 int main() 6 { 7 int i,j,k,hang=1,lie=1;
8 pr...
分类:
编程语言 时间:
2014-05-21 17:23:25
阅读次数:
343
输出字符串:
puts()函数:
puts()函数只接受一个参数(指向要显示的字符串的指针)。由于字面字符串是一个指向字符串的指针,因此
puts()可用于显示字面字符串和字符串变量。
puts()显示完字符串后,自动换行。
puts()是一个标准的输出函数,需要包含stdio.h。
printf()函数:
printf()函数是库函数,可用于显示字符串,使用转换...
分类:
编程语言 时间:
2014-05-21 16:53:00
阅读次数:
299
DES加密解密的C++源程序
--测试版本,希望大家多多交流
#include
#include"stdio.h"
#include"math.h"
#include "string.h"
static char key[16][48];
static char Hex[16][4];
...
分类:
编程语言 时间:
2014-05-21 15:42:24
阅读次数:
389
编程题:输入一串字符,程序会自动将大写字母转换为小写#include<stdio.h>#include<conio.h>main(){ inti=0; chara[50],ch; printf("输入一串字符,程序会自动将大写字母转换为小写\n"); printf("按任意键继续,按Esc键退出\n"); while(ch=getch()!=27) { fflush(..
分类:
其他好文 时间:
2014-05-21 02:46:26
阅读次数:
277
编程题:文件读写fprintf()、fscanf()使用,功能:将5个学生记录输入文件d:\stu1.txt中,并且显示在屏幕上。#include<stdio.h>voidmain(){FILE*fp;longnum;intn,score;charname[20];intN=5;fp=fopen("d:\\stu1.txt","w");for(n=1;n<=N;n++){scanf("%s%10ld%d",na..
分类:
其他好文 时间:
2014-05-21 01:23:13
阅读次数:
388
编程题:枚举变量作为循环控制变量#include<stdio.h>voidmain(){enumseason{spring=1,summer,autumn,winter}s;for(s=spring;s<=winter;s++) printf("%d\n",s);}
分类:
其他好文 时间:
2014-05-20 21:27:05
阅读次数:
357
编程题:指针变量指向结构体数组。#include<stdio.h>voidmain(){structperson{charname[20];charsex;intage;floatheight;}per[3]={{"LiPing",‘M‘,20,175},{"WangLing",‘F‘,19,162.5},{"ZhaoHui",‘M‘,20,178}};structperson*p;for(p=per;p<per+3;p++)printf("%-18s%3c%..
分类:
其他好文 时间:
2014-05-20 18:57:32
阅读次数:
255
编程题:输入文件名,输出该文件的内容。fgetc(fp)的使用。#include<stdio.h>voidmain(){FILE*fp;charout_ch,f_name[30];scanf("%s",f_name);fp=fopen(f_name,"r");if(fp!=NULL){while((out_ch=fgetc(fp))!=EOF)putchar(out_ch);}elseprintf("\n\n\t\t%s文件不存在。\n",..
分类:
其他好文 时间:
2014-05-20 18:35:52
阅读次数:
254
编程题:输入一个数字,实现逆排功能。#include<stdio.h>#include<conio.h>fun(intm,char*s){charc;intk,i=10;while(m!=0){k=m%i;*s=k+‘0‘;s++;m=(m-k)/i;}*s=‘\0‘;}main(){intn;chars[81],*p;p=s;printf("enteranumber(>100):");scanf("%d",&n);fun(n,s);p..
分类:
其他好文 时间:
2014-05-20 17:59:19
阅读次数:
232