/*
#include<stdio.h> int is_prime(int n)
{
for(int i = 2; i <= n/2; i ++)
if(n % 2 == 0)
return 0;
return 1;
} int main()
{
int n; printf("Enter a number(exit when n<=1):");
scanf("%d", &n);
if(is_prime(n) && n > 1)
printf("%d is a prime number", n);
else if(n > 1)
printf("%d is not a prime number", n);
else
; return 0;
} #include<stdio.h> int is_prime(int n)
{
for(int i = 2; i <= n/2; i ++)
if(n % 2 == 0)
return 0;
return 1;
}
int main() {
int n; printf("Enter a even number(n>=6):");
scanf("%d", &n);
if(n < 6 || n%2 != 0)
printf("error: illegal input\n");
else
for(int i = 2; i <= n/2; i ++)
if(is_prime(i) && is_prime(n-i))
printf("%d = %d + %d\n", n, i, n-i);
return 0;
} #include<stdio.h>
int fac(int x)
{
if(x == 1)
return 1;
else
return x*fac(x-1);
}
int main()
{
int n, m;
int result; printf("Enter the value of n and m:");
scanf("%d %d", &n, &m);
result = fac(n)/(fac(n-m)*fac(m));
printf("Result is %d\n", result);
return 0;
} #include<stdio.h> void selectMaxAndMin(int A[][4], int row, int c)
//int A[][]: array type has incomplete element type ?
{
int max, min; max = min = A[0][0];
for(int i = 0; i < row; i ++)
for(int j = 0; j < c; j ++){
if(A[i][j] > max)
max = A[i][j];
if(A[i][j] < min)
min = A[i][j];
}
printf("max = %d, min = %d\n", max, min);
} void main()
{
int A[4][4] = {1, 5, 3, 6,
2, 4, 5, 7,
3, 9, 8, 0,
4, 1, 9, 5}; selectMaxAndMin(A, 4, 4);
} #include<stdio.h> char trans(char c)
{
if(c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z')
return c+4;
else
return c;
}
void main()
{
char s[100];
char c;
int i; i = 0;
while((c = getchar()) != '\n')
s[i++] = trans(c);
s[i] = '\0';
printf("%s\n", s);
} #include<stdio.h>
#define ROW 2
#define COL 3 void trans(int arr[100][100])
//int arr[][100] 无法正常传值????
{
int k = 0; printf("transArr:\n");
for(int i = 0; i <= COL; i ++){
for(int j = 0; j <= ROW; j ++)
printf("%5d", arr[j][i]);
printf("\n");
}
}
void main()
{
int oriArr[100][100]; printf("Enter the value of oreArr:\n");
for(int i = 0; i <= ROW; i ++)
for(int j = 0; j <= COL; j ++){
printf("oriArr[%d][%d]=", i, j);
scanf("%d", &oriArr[i][j]);
}
printf("oriArr:\n");
for(int i = 0; i <= ROW; i ++){
for(int j = 0; j <= COL; j ++)
printf("%5d", oriArr[i][j]);
printf("\n");
}
trans(oriArr);
} #include<stdio.h> char s[100];
void My_char(int i)
{
if(i == 0)
printf("%c", s[0]);
else{
printf("%c", s[i]);
My_char(i-1);
}
}
int main()
{
char c;
int i; i = 0;
printf("Enter a String:\n");
while((c = getchar()) != '\n')
s[i++] = c;
printf("After be reverse:\n");
My_char(i-1); } */

c function的更多相关文章

  1. 通过百度echarts实现数据图表展示功能

    现在我们在工作中,在开发中都会或多或少的用到图表统计数据显示给用户.通过图表可以很直观的,直接的将数据呈现出来.这里我就介绍说一下利用百度开源的echarts图表技术实现的具体功能. 1.对于不太理解 ...

  2. jsp中出现onclick函数提示Cannot return from outside a function or method

    在使用Myeclipse10部署完项目后,原先不出错的项目,会有红色的叉叉,JSP页面会提示onclick函数错误 Cannot return from outside a function or m ...

  3. JavaScript function函数种类

    本篇主要介绍普通函数.匿名函数.闭包函数 目录 1. 普通函数:介绍普通函数的特性:同名覆盖.arguments对象.默认返回值等. 2. 匿名函数:介绍匿名函数的特性:变量匿名函数.无名称匿名函数. ...

  4. 在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()

    1.问题: 测试php7.0 链接mysql数据库的时候发生错误: Fatal error: Uncaught Error: Call to undefined function mysqli_con ...

  5. jquery中的$(document).ready(function() {});

    当文档载入时执行function函数里的代码, 这部分代码主要声明,页面加载后 "监听事件" 的方法.例如: $(document).ready( $("a") ...

  6. Function.prototype.toString 的使用技巧

    Function.prototype.toString这个原型方法可以帮助你获得函数的源代码, 比如: function hello ( msg ){ console.log("hello& ...

  7. 转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38

    转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38http://space.itpub. ...

  8. [Xamarin] 透過Native Code呼叫 JavaScript function (转帖)

    今天我們來聊聊關於如何使用WebView 中的Javascript 來呼叫 Native Code 的部分 首先,你得先來看看這篇[Xamarin] 使用Webview 來做APP因為這篇文章至少講解 ...

  9. Oracle数据库自动备份SQL文本:Procedure存储过程,View视图,Function函数,Trigger触发器,Sequence序列号等

    功能:备份存储过程,视图,函数触发器,Sequence序列号等准备工作:--1.创建文件夹 :'E:/OracleBackUp/ProcBack';--文本存放的路径--2.执行:create or ...

  10. javascript中的Function和Object

    写的很好,理解了很多,特此转发记录 转自:http://blog.csdn.net/tom_221x/archive/2010/02/22/5316675.aspx 在JavaScript中所有的对象 ...

随机推荐

  1. oracle初次使用连接不上

    问题描述: win10下,cmd运行 输入sqlplus报一下错误 SP2-1503: 无法初始化 Oracle 调用界面 SP2-0152: ORACLE 不能正常工作 解决办法 cmd右键--以管 ...

  2. drupal 自定义表单调用autocomplete主标签实现方法

    代码如下: <php function module_name_form() { $form = array(); $form['city'] = array( '#title' => t ...

  3. 【PHP设计模式 04_GongChang.php】 工厂方法

    <?php /** * [工厂方法] * 之前 03.php 简单工厂,如果再增加一个oracle客户端,就需要再次修改服务端Factory的代码. * 在面向对象设计法则中,有一个重要的[开闭 ...

  4. 1、java基础回顾与加强

    一.    基础回顾 1   集合 1.1  集合的类型与各自的特性 ---|Collection: 单列集合 ---|List: 有存储顺序, 可重复 ---|ArrayList:    数组实现, ...

  5. Windows通过DOS命令进入MYSQL的方法

    例:MYSQL安装在 D:\ApacheServer\mysql 下 开始==>运行==>cmd,或者 按住win键+r键输入cmd C:\Users\Administrator>d ...

  6. LA 3704 Cellular Automaton

    题意概述: 等价地,本题可以转化为下面的问题: 考虑$n \times n$的$0-1$矩阵$A$,在第$i$行上第$[-d+i, d+i]$(模$n$意义下)列对应的元素为$1$,其余为$0$.求$ ...

  7. 栈——PowerShell版

    上一篇讲过队列(queue),队列就像是居民楼里的垃圾管道,从楼道的垃圾管道的入口处将垃圾扔进去,清洁工会从一楼垃圾管道的出口处将垃圾拿走.每一层的垃圾通道入口与一楼的垃圾管道出口之间都形成了一个队列 ...

  8. UML建模的要点总结

    预备知识: 一.UML的特性与发展现状 UML是一种Language(语言) UML是一种Modeling(建模)Language UML是Unified(统一)Modeling Language 1 ...

  9. Java提高篇---List总结

    一.List接口概述 List接口,成为有序的Collection也就是序列.该接口可以对列表中的每一个元素的插入位置进行精确的控制,同时用户可以根据元素的整数索引(在列表中的位置)访问元素,并搜索列 ...

  10. Mysql-学习笔记(==》常用函数 八)

    -- 常用函数 字符编码uft8汉字为3个字节 gbk汉字两个字节 gbk占用空间小速度快 utf8兼容性好 -- length 返回字符的字节数SELECT LENGTH('asd王');-- ch ...