1 条题解
-
0
C :
#include<stdio.h> int main() { int a,b,c,d,e; for(a=0;a<=1;a++) for(b=0;b<=1;b++) for(c=0;c<=1;c++) for(d=0;d<=1;d++) for(e=0;e<=1;e++) printf("%d%d%d%d%d\n",a,b,c,d,e); return 0; }
C++ :
#include<iostream> using namespace std; int main() { int a,b,c,d,e; for(a=0;a<=1;a++) { for(b=0;b<=1;b++) { for(c=0;c<=1;c++) { for(d=0;d<=1;d++) { for(e=0;e<=1;e++) { cout<<a<<b<<c<<d<<e<<endl; } } } } } return 0; }
Java :
import java.util.Scanner; public class Main { public static void main(String[] args) { for(int a=0;a<=1;a++){ for(int b=0;b<=1;b++){ for(int c=0;c<=1;c++){ for(int d=0;d<=1;d++){ for(int e=0;e<=1;e++){ System.out.println(a+""+b+""+c+""+d+""+e); } } } } } } }
- 1
信息
- ID
- 677
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- (无)
- 标签
- 递交数
- 0
- 已通过
- 0
- 上传者