Java教程

代码样式实验

本文主要是介绍代码样式实验,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
 

?????

 

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
    char s[200];
    scanf("%s", s);
    sort(s, s + strlen(s));
    puts(s);
    while (next_permutation(s, s + strlen(s)))
        puts(s);
    return 0;
}
View Code
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 using namespace std;
 5 int main()
 6 {
 7     char s[200];
 8     scanf("%s", s);
 9     sort(s, s + strlen(s));
10     puts(s);
11     while (next_permutation(s, s + strlen(s)))
12         puts(s);
13     return 0;
14 }
View Code
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
    char s[200];
    scanf("%s", s);
    sort(s, s + strlen(s));
    puts(s);
    while (next_permutation(s, s + strlen(s)))
        puts(s);
    return 0;
}
View Code
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 using namespace std;
 5 int main()
 6 {
 7     char s[200];
 8     scanf("%s", s);
 9     sort(s, s + strlen(s));
10     puts(s);
11     while (next_permutation(s, s + strlen(s)))
12         puts(s);
13     return 0;
14 }
View Code

 

这篇关于代码样式实验的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!