#include <iostream>using namespace std;int s(int);int main(){ int n; cin>>n; cout<<s(n)<<endl; system("pause"); return 0;}int s(int n){ int m=0; if(n= ...
分类:
编程语言 时间:
2018-02-07 11:55:33
阅读次数:
144
#include <iostream>using namespace std;double f(int,int);int main(){ int n,x; cout<<"please enter n,x"; cin>>n>>x; cout<<f(n,x)<<endl; system("pause") ...
分类:
编程语言 时间:
2018-02-06 16:45:09
阅读次数:
175
#include<iostream> using namespace std; int prime(int n){ int j,k; for(j=2;j<n;j++){ if(n%j==0){ k=0; return(k); break; }else{ k=1; return(k); } } } i ...
分类:
编程语言 时间:
2018-02-06 12:56:22
阅读次数:
112
#include <iostream>using namespace std;int sushu(int);int main(){ int a; cout<<"请输入一个数"; cin>>a; cout<<sushu(a)<<"是素数"<<endl; system("pause"); return ...
分类:
编程语言 时间:
2018-02-05 14:25:49
阅读次数:
167
#include <iostream>using namespace std;int fac(int);int main(){ int a,b,c; cout<<"please enter a,b,c"; cin>>a>>b>>c; cout<<"a!="<<fac(a)<<","<<"b!="<< ...
分类:
编程语言 时间:
2018-02-05 14:16:58
阅读次数:
102
#include <iostream> using namespace std; int gyx(int,int); int gbx(int,int); int main() { int a,b; cout<<"请输入2个整数"; cin>>a>>b; cout<<"最大公约数为"<<gyx(a,b ...
分类:
编程语言 时间:
2018-02-04 19:41:29
阅读次数:
151
break语句与continue语句的区别:continue语句跳出本次循环,结束当前语句,用来告诉Python跳过当前循环的剩余语句,然后继续进行下一轮循环。用在while和for循环中。break语句跳出整个循环。打破了最小封闭for或while循环。用来终止循环语句,即循环条件没有False条件或者序列还没被完全递归完,也会停止执行循环语句。break语句用在while和for循环中。如果使
分类:
编程语言 时间:
2018-01-22 11:58:40
阅读次数:
138
语法 说明 label语句可以在代码中添加标签,以便将来使用。定义的标签可以在将来由break或continue语句引用。加标签的语句一般都要与for语句等循环语句配合使用。 // 示例 let count = 0; loop1: for (let i = 0; i ...
分类:
编程语言 时间:
2018-01-21 01:14:59
阅读次数:
189
while True: s = input('Enter something : ') if s == 'quit': break if len(s) < 3: print('Too small') continue print('Input is of sufficient length') # ... ...
分类:
其他好文 时间:
2018-01-20 22:46:36
阅读次数:
159
条件语句 if else 循环语句 while for 循环之break continue break语句用来终止循环语句,即循环条件没有False条件或者序列还没被完全递归完,也会停止执行循环语句。 break语句用在while和for循环中。 continue 语句用来告诉Python跳过当前循 ...
分类:
编程语言 时间:
2018-01-15 18:42:24
阅读次数:
145