php语言编写一个程序编写一个程序,用户输入一个正整数,把它的各位数字前后颠倒一下,并输出颠倒后的结果

php语言编写一个程序编写一个程序,用户输入一个正整数,把它的各位数字前后颠倒一下,并输出颠倒后的结果,第1张

//性能最高的方法,不调用任何函数

function reverseNo($number) {

    $res = "";

    for ($i = 0;; $i ++) {

        if ($number < 10) {

            return $res  $number;

        }

        $n = $number % 10;

        $res = $n;

        $number = (int) ($number / 10);

    }

}

$number = 41235345;

$res = reverseNo($number);

var_dump($res);

test1php具体代码:

class Rect{

    public function getPerimeter ( $a, $b ) {

        return 2($a+$b);

    }

    

    public function getArea ( $a, $b ){

        return $a$b;

    }

}

$rect = new Rect();

$a = 10;

$b = 20;

$perimeter = $rect->getPerimeter($a,$b);

$area = $rect->getArea($a,$b);

echo '周长:'$perimeter;

echo "\n";

echo '面积:'$area;

输出:

周长:60

面积:200

#include <stdioh>

#include <mathh>

#include <stdlibh>

#define I 20

#define R 340

#include <stringh>

int main()

{

char answer[10];

printf("遇到你\n我才发现\n曾经所有的条件\n似乎都成了我等你的借口\n\n");

printf("我对你的感情已经决堤\n所以\n请允许我,从今往后映入你\n明媚的眼\n");

printf("我\n想和你\n耳鬓厮磨,相濡以沫!");

printf("答应我吧!\n输入yes,你可以看到我的真心\n");

scanf("%s", answer);

float y, x, z, f;

for (y = 15f; y > -15f; y -= 01f)

{

for (x = -15f; x < 15f; x += 005f)

{

z = x x + y y - 1;

f = z zz - x xyyy;

putchar(f <= 00f ""[(int)(f-80f)] : ' ');

}

putchar('\n');

}

long time;

for (;;)

{

system("color a");

for (time = 0; time<99999999; time++);

system("color b");

for (time = 0; time<99999999; time++);

system("color c");

for (time = 0; time<99999999; time++);

system("color d");

for (time = 0; time<99999999; time++);

system("color e");

for (time = 0; time<99999999; time++);

system("color f");

for (time = 0; time<99999999; time++);

system("color 0");

for (time = 0; time<99999999; time++);

system("color 1");

for (time = 0; time<99999999; time++);

system("color 2");

for (time = 0; time<99999999; time++);

system("color 3");

for (time = 0; time<99999999; time++);

system("color 4");

for (time = 0; time<99999999; time++);

system("color 5");

for (time = 0; time<99999999; time++);

system("color 6");

for (time = 0; time<99999999; time++);

system("color 7");

for (time = 0; time<99999999; time++);

system("color 8");

for (time = 0; time<99999999; time++);

system("color 9");

}

getchar();

return 0;

}

运行效果:

扩展资料:

printf函数使用注意事项

1、域宽

%d:按整型数据的实际长度输出。

如果想输出指定宽度可以指定域宽,%md--&gt;m域宽,打印出来以后,在控制台上,显示m位;

如果我们要打印的数的位数如果超过我们设定m则原样输出;

如果我们要打印的数的位数如果小于我们设定的位数,则补空白,具体如下:

如果m为正数,则左对齐(左侧补空白);

如果m为负数,则右对齐(右侧补空白)。

2、转义字符

如果想输出字符"%",则应该在“格式控制”字符串中用连续两个%表示。

如:printf("%f%%",1.0/3);输出结果:0.333333%。

<!DOCTYPE html><html lang="zh-cn"><head> <meta charset="UTF-8" /> <title>测试</title></head><body> <form action="testphp" type="post"> <div class="select-area"> <input type="checkbox" name="program[]" value="1" />AJAX <input type="checkbox" name="program[]" value="2" />PHP <input type="checkbox" name="program[]" value="3" />FLASH <input type="checkbox" name="program[]" value="4" />ASP <input type="checkbox" name="program[]" value="5" />JSP </div> <div class="submit-button"> <input type="submit" class="submit">确定</button> </div> </form></body></html> <php !empty($_POST['program']) $program = $_POST['program'] : ''; if ($program) { //遍历传递过来的是数组 if (in_array(2, $program)&&in_array(4,$program)&&in_array(5,$program)) { echo '正确'; }elseif (!in_array(2, $program) || !in_array(4,$program) || !in_array(5,$program)) { echo '回答不全!'; }else{ echo '错误!'; } }>

以上就是关于php语言编写一个程序编写一个程序,用户输入一个正整数,把它的各位数字前后颠倒一下,并输出颠倒后的结果全部的内容,包括:php语言编写一个程序编写一个程序,用户输入一个正整数,把它的各位数字前后颠倒一下,并输出颠倒后的结果、怎么编写PHP程序,求解、求一个C语言表白程序等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9710919.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存