摘要:
今天编的一个较简单的函数调用的程序 题目:a+b(用子函数) 程序 #include<stdio.h> void addition() { int a,b; scanf("%d %d",&a,&b); a=a+b; printf("%d",a); } //在子函数中进行a+b int main() 阅读全文
摘要:
今天的程序,自己编的,感觉六六的,么么哒(づ ̄ 3 ̄)づ 题目:在数组中查找书a的位置 #include<stdio.h>int b[10]={1,1,2,3,3,5,6,6,7,9},a; //定义两个全局变量int erfen(int x,int y){ int o; if(x>y) retur 阅读全文
摘要:
输入一个数a,求他是否是素数(用函数) 程序: #include<stdio.h> int prime(int a) //定义一个prime的自定义函数 { int i,y=0; for(i=1;i<=a;i++) { if(a%i!=0) y++; } //判断是不是素数 return y; // 阅读全文
摘要:
以下是我今日的a-b(高精度)的程序,\(^o^)/偶也偶也偶也偶也! 程序: #include<stdio.h> #include<string.h> char s[1000]; //定义一个字符数组 int a[1000]={0}; //定义一个int类型的数组 int main() { int 阅读全文
摘要:
我现在已经是才语言中的一员了,我在此献上今日的佳作——a-b(高精度),以下是我的程序及其注释,欢迎各位来观赏,耶! 程序: #include<stdio.h> #include<string.h> char s1[1000]; int a[1000]={0},b[1000]={0},c[1000] 阅读全文