c function
/*
#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的更多相关文章
- 通过百度echarts实现数据图表展示功能
现在我们在工作中,在开发中都会或多或少的用到图表统计数据显示给用户.通过图表可以很直观的,直接的将数据呈现出来.这里我就介绍说一下利用百度开源的echarts图表技术实现的具体功能. 1.对于不太理解 ...
- jsp中出现onclick函数提示Cannot return from outside a function or method
在使用Myeclipse10部署完项目后,原先不出错的项目,会有红色的叉叉,JSP页面会提示onclick函数错误 Cannot return from outside a function or m ...
- JavaScript function函数种类
本篇主要介绍普通函数.匿名函数.闭包函数 目录 1. 普通函数:介绍普通函数的特性:同名覆盖.arguments对象.默认返回值等. 2. 匿名函数:介绍匿名函数的特性:变量匿名函数.无名称匿名函数. ...
- 在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()
1.问题: 测试php7.0 链接mysql数据库的时候发生错误: Fatal error: Uncaught Error: Call to undefined function mysqli_con ...
- jquery中的$(document).ready(function() {});
当文档载入时执行function函数里的代码, 这部分代码主要声明,页面加载后 "监听事件" 的方法.例如: $(document).ready( $("a") ...
- Function.prototype.toString 的使用技巧
Function.prototype.toString这个原型方法可以帮助你获得函数的源代码, 比如: function hello ( msg ){ console.log("hello& ...
- 转: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. ...
- [Xamarin] 透過Native Code呼叫 JavaScript function (转帖)
今天我們來聊聊關於如何使用WebView 中的Javascript 來呼叫 Native Code 的部分 首先,你得先來看看這篇[Xamarin] 使用Webview 來做APP因為這篇文章至少講解 ...
- Oracle数据库自动备份SQL文本:Procedure存储过程,View视图,Function函数,Trigger触发器,Sequence序列号等
功能:备份存储过程,视图,函数触发器,Sequence序列号等准备工作:--1.创建文件夹 :'E:/OracleBackUp/ProcBack';--文本存放的路径--2.执行:create or ...
- javascript中的Function和Object
写的很好,理解了很多,特此转发记录 转自:http://blog.csdn.net/tom_221x/archive/2010/02/22/5316675.aspx 在JavaScript中所有的对象 ...
随机推荐
- Shell—学习之心得
由于项目要招聘需要有经验shell开发人员(awk编程),而作为技术面试官(暂时)的我对shell编程不太熟:当然以前也写过一些shell脚本来满足项目的需求—备份环境,数据库(逻辑).假如只是针对a ...
- 关于匿名类无法转换为object
缘由,不能在Razor中使用匿名类, 先事先封装了一个方法,用于Razor给cshtml模板返回页面. 在ashx一般处理程序中,是这样调用的 匿名类的格式如下:(只看格式,不看具体内容) 调用这样 ...
- c语言中各个类型的sizeof长度
#include <stdio.h> int main() { printf("\nA Char is %lu bytes", sizeof( char )); ...
- 【转】用 SVN Importer 实现 CSVNT 到 SVN 的转换
转载地址:http://www.blogjava.net/yongbing/archive/2007/03/04/101761.html 用 SVN Importer 实现 CSVNT 到 SVN 的 ...
- poj2429 GCD & LCM Inverse
用miller_rabin 和 pollard_rho对大数因式分解,再用dfs寻找答案即可. http://poj.org/problem?id=2429 #include <cstdio&g ...
- R2D2 and Droid Army(多棵线段树)
R2D2 and Droid Army time limit per test 2 seconds memory limit per test 256 megabytes input standard ...
- ContentProvider官方教程(2)简介、Content URIs
In this document Overview Accessing a provider Content URIs Content Provider Basics A content provid ...
- C语言中的二维数组和数组指针的那些事
其实很多人就想弄明白这个定义了的数组指针里面赋值给的a究竟是什么 a是一个列地址,那么*a是什么,*a还是个地址它存储了行地址.如果我们定义一个指针,那他就有点二级指针的味道.因为它存储的是一个地址, ...
- 3-WebPack
一. 什么是WebPack WebPack可以看做是模块加载.打包工具. 它所做的事情是 1.分析你的项目结构,找到JavaScript模块以及其它的一些浏览器不能直接运行的拓展语言(Scss,Typ ...
- CodeForces 490C Hacking Cypher
Hacking Cypher Time Limit:1000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u Sub ...