当前位置:编程学习 > C/C++ >>

问题七十四:支配值数目。

 

\

[plain]
/* 程序头部注释开始(为避免提交博文中遇到的问题,将用于表明注释的斜杠删除了)      
* 程序的版权和版本声明部分      
* All rights reserved.      
* 文件名称: txt.c      
* 作    者: liuyongshui      
* 完成日期: 2013 年4 月24日      
* 版 本 号: V1.0      
*/     
 
#include <stdio.h> 
 
int main() 

    int i; 
    int j; 
    int cout =0; 
    int num[]={1, 3, 5, 7, 9};     //num[] 代替f[] 
    int cou[]={2, 3, 4, 7, 8};     //cou[] 代替g[] 
 
    for(i=0; i<5; i++) 
    { 
        for(j=0; j<5; j++) 
        { 
            if(num[j]> cou[i]) 
            { 
               cout++; 
            } 
        } 
    } 
     printf("数组num[]比数组cou[]大的数有%d个\n", cout); 
 
    return 0; 

/* 程序头部注释开始(为避免提交博文中遇到的问题,将用于表明注释的斜杠删除了)    
* 程序的版权和版本声明部分    
* All rights reserved.    
* 文件名称: txt.c    
* 作    者: liuyongshui    
* 完成日期: 2013 年4 月24日    
* 版 本 号: V1.0    
*/   

#include <stdio.h>

int main()
{
    int i;
 int j;
 int cout =0;
 int num[]={1, 3, 5, 7, 9};     //num[] 代替f[]
 int cou[]={2, 3, 4, 7, 8};     //cou[] 代替g[]

 for(i=0; i<5; i++)
 {
  for(j=0; j<5; j++)
  {
   if(num[j]> cou[i])
   {
      cout++;
   }
  }
 }
     printf("数组num[]比数组cou[]大的数有%d个\n", cout);

 return 0;
}

 

补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,