`
xrtkong
  • 浏览: 15504 次
  • 性别: Icon_minigender_1
  • 来自: 济南
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
/*Exercise 4.3 Displaying printable characters plus whitspace names */ #include <stdio.h> #include <ctype.h> int main(void) {     int i = 0 ;   char ch = 0;                       /* Character code value */   for( i = 0 ; i<128 ; i++)   {     ch = (char)i;     if(ch%2==0)     ...
/* isgraph();判断字符c是否为除空格外的可打印字符*/ #include<stdio.h> #include<ctype.h> int main(){     int i = 0 ;     int j = 0 ;//判断打印出的个数     for(i = 0 ; i<=127 ; i++){         if(isgraph(i)){         //打印可打印字符         printf("%-3d-%c, ",i,i);             //每十个字符一行             i ...
/*输入程序实现乘法表*/ #include<stdio.h> /*主函数,也是C语言程序的入口*/ int main(void){         int i  = 0 ;//定义循环变量i     int j  = 0 ;//定义循环变量j     int counter = 0 ;//定义输出表的数据         printf(" Please input the number you want , Dont forget the sapces !\n");     scanf(" %d", &coun ...
注意:在C语言中,变量必须声明在函数开始的地方     #include<stdio.h> #include<ctype.h> #include<stdlib.h> #include<time.h> #define true 1    #define false 0  int main(){         char another_game ='Y' ;     int correct = false ...
#include<stdio.h> int main(){         char jx = 0 ;         double number1 = 0.0 ;         double number2 = 0.0 ;         char op = 0 ;     loop: printf(" \n Enter the calculation\n");// 定义标识         scanf("  %lf %c %lf",&number1,&op,&number2);         ff ...
#include<stdio.h> #define price 5 int main(){    // const int price = 5 ;     int shuliang = 0 ;            printf(" 请输入一个数值!");         scanf("%d" ,&shuliang);     if(shuliang >= 20 ){         printf("%.2f",(float)shuliang *  0.9 * price );     ...
#include<stdio.h> int main340(){     int month = 0 ;     int day = 0 ;     int year = 0 ;     char *m[] ={" " ,"January", "February", "Marth", "April", "May", "June", "July", "August", "September ...
#include<stdio.h> int main(){         double number1 = 0.0 ;     double number2 = 0.0 ;     char op = 0 ;     printf(" \n Enter the calculation\n");     scanf("  %lf , %c,  %lf",&number1,&op,&number2);     switch(op){     case '+' :         printf(&quo ...
/* programe exercise 2.3 */ #include<stdio.h> int main(){         float price_a = 3.5f ;     float price_l = 5.5f ;     int shuliang = 0 ;     char Hhuaban = 'H' ;     char putongban = 'P' ;     char version ='0';     float je = 0.00f ;     printf(" enter the version H or P: \n ...
/* programe  which rember user to input width and length in inches,then output the square of the room in square yard */ #include<stdio.h> #include<math.h> int main(){     long length = 0L ;     long width = 0L ;     long sqreinches = 0L ;     float sqre = 0.0f;     printf(" ...
/*write a programe,rember user to input a distanc in inches,the output the distance in yard foot,inches*/ /*one yard = 3 foot , one foot = 12 inches*/ #include<stdio.h> int main(){     long inches = 0L ;     long foot = 0L ;     long yard = 0L ;         printf(" Input the Inches : ...
1、yum  install banshee; 2、rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm yum install gstreamer-plugins-bad gstreamer-ffmpeg gstreamer-plugins-ugly -y  
在rhel6.1下安装amule2.2.6 1、安装wxWidgets-2.9.0 2、源码编译安装amule 3、设置/etc/profile 加入:export   LD_LIBRARY_PATH=/usr/local/lib
不知道什么原因,在rhel server6.1上安装transmission总是有这样那样的错误,没办法不停降低transmission的版,在安装transmission1.8时顺利安装成功,没有高版本的各种部题,不知道什么原因。 下载transmission1.8的tar.bz的源码 解压,进入transimission目录, 1、./configure 2、make 3、make install
1、在/etc/yum.repos.d/里建一个以.repo结尾的文件,写入相应的yum信息。     vi /etc/yum.repos.d/local.repo 2、写入信息 [local] name = yum baseurl=file:///back/rhel enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release 3、将镜像解压后根目录下的 RPM-GPG-KEY-redhat-release替换/etc/pki/rpm-gpg/RPM-GPG-KEY-redhat ...
Global site tag (gtag.js) - Google Analytics