c语言写一个数组栈

c语言写一个数组栈

#include &ltstdio.h&gt#include &ltstdlib.h&gt#define Size 20typedef char ElementTypetypedef struct{    E
Python230
C语言 字符串加密

C语言 字符串加密

#include&ltstdio.h&gt#include&ltstdlib.h&gt#include&ltstring.h&gtint main(void){    char c[100] 
Python170
c语言 求中位数

c语言 求中位数

#include&ltstdio.h&gt#define N 1001void bubblesort(int *list,int len) 冒泡排序{    int i,jint temp    for(i=0i&am
Python160
c语言 求中位数

c语言 求中位数

#include&ltstdio.h&gt#define N 1001void bubblesort(int *list,int len) 冒泡排序{    int i,jint temp    for(i=0i&am
Python160
c语言ip判断

c语言ip判断

#include&ltstdio.h&gtstruct IP{int achar q1int bchar q2int cchar q3int d}svoid yesno(){scanf("%d%c%
Python150
c语言ip判断

c语言ip判断

#include&ltstdio.h&gtstruct IP{int achar q1int bchar q2int cchar q3int d}svoid yesno(){scanf("%d%c%
Python160
c语言ip判断

c语言ip判断

#include&ltstdio.h&gtstruct IP{int achar q1int bchar q2int cchar q3int d}svoid yesno(){scanf("%d%c%
Python160
python如何计算π

python如何计算π

#coding=utf-8'''Created on 2014-11-04@author: Neo'''import sysimport mathfrom decimal impo
Python190
c语言 求中位数

c语言 求中位数

#include&ltstdio.h&gt#define N 1001void bubblesort(int *list,int len) 冒泡排序{    int i,jint temp    for(i=0i&am
Python160
JAVA编程 完全数

JAVA编程 完全数

public class PerfectNumber{private static String[] isPrefectnumber(int n){int sum=0StringBuffer sBuffer = new String
Python270
c语言画飞机图形

c语言画飞机图形

#include &ltstdio.h&gtint main(){    int space[5]={4,4,5,6}    int i,j    for(i = 0 i &lt 4 i ++)    {      
Python210
c语言gcd函数怎么用

c语言gcd函数怎么用

求两个数a,b的最大公约数 int gcd(int a,int b){if(a==0){return b}else{return gcd(b % a,a)}}int gcd(int m,int n){int i,rgcd=1for 
Python110
C语言计算圆周率

C语言计算圆周率

 #include "stdio.h"void main(){ int n=0    double i=1    double sum=0    while((1i)&gt0.0000001)    {    
Python210