首先ABCDEFG,虽然HIJK,但我相信LMNOP。什么意思?提示是每个字母表示一个单词,然后穿起来三句话

首先ABCDEFG,虽然HIJK,但我相信LMNOP。什么意思?提示是每个字母表示一个单词,然后穿起来三句话,第1张

ABCDEFG:A Boy Can Do Everything For Girl.

LMNOP:He is just kidding

LMNO: Love must need our patience

意思是:一个男孩可以为女孩做的一切,高校只是在开玩笑,爱需要我们的耐心。

(^__^) 嘻嘻……,其实还有RST。

以下程序调试通过,保证正确运行:

#include <stdioh>

main(){

int i,j;

for (i=0;i<14;i++){

for (j=0;j<i+1;j++) printf("%c",32);

for (j=0;j<13-i;j++) printf("%c",66+i+j);

printf("");

for (j=0;j<13-i;j++) printf("%c",78+j);

printf("\n");

}

}

这么复杂一个程序才5分?main()

{

char n;

int i;

for(i=0;i<13;i++)

{

for(n=i;n<13;n++)

printf("%c",n+65);

printf("");

for(;n<26-i;n++)

printf("%c",n+65);

printf("\n");

}

printf("\n");

}

高不太好解释,你自己看吧,看不明白问我。。

Wife: "How would you describe me" Husband: "ABCDEFGHIJK"

Wife: "What does that mean"

Husband: "Adorable, beautiful, cute, delightful, elegant, fashionable, gorgeous, and hot"

Wife: "Aw, thank you, but what about IJK" Husband: "I'm just kidding!"

妻子:“你怎么评论我”

丈夫:“ABCDEFGHIJK。”

妻子:“这是什么意思”

丈夫:“你可爱,漂亮,聪明,开朗,优雅,时尚,美丽、热情。”

妻子:“啊,谢了,但是IJK呢”

丈夫:“我只是开个玩笑!”

A boy can do everything for girl

一个 男孩 可以 做 任何事情 为 女孩

一一对应的,应该懂了吧,对了,开头字母连起来是abcdefg,英文26字母前7个

GFEDCBA - Girls Forgot Everything Done&Catches new Boy Again

http://zhidaobaiducom/question/209765750html

a boy can do everything for girl , he is just kidding , love must need you Quiteness remains some trust

一个男孩能做任何事情给女孩,他是开玩笑 爱必须需要你,什么也不说 依然相信你

/count the tax

by 小ku1988

/

#include<stdioh>

void main()

{

char choice;

float kilo;

printf("Enter your choice(c,t,b) for(car,truck,bus) to count the tax;\n");

choice=getchar();

switch(choice)

{

case 'c':

{

printf("Enter the kilometre:\n");

scanf("%f",&kilo);

printf("The fee is : %g yuan\n",kilo05);

break;

}

case 't':

{

printf("Enter the kilometre:\n");

scanf("%f",&kilo);

printf("The fee is : %g yuan\n",kilo10);

break;

}

case 'b':

{

printf("Enter the kilometre:\n");

scanf("%f",&kilo);

printf("The fee is : %g yuan\n",kilo15);

break;

}

}

getch();

}

第一题、、

第二题、

/ By 小ku1988 /

/用字符串打印的/

#include<stdioh>

void main()

{

int i,j;

char ch;

ch='0';

for(i=1;i<=10;i++)

{

if(i==1)

printf("09+1=1");

else

{

for(j=1;j<=i-1;j++,ch++)

printf("%c",ch);

printf("9+%d=1",i);

j=1;

while(1)

{

if(j==i) break;

else

{

printf("1");

j++;

}

}

}

printf("\n");

ch='1';

}

getch();

}

第五题、、

/ By 小ku1988 /

/ 第五题/

#include<stdioh>

long int F(int);

void main()

{

int i,j,n,t;

printf("Enter n;\n");

scanf("%d",&n);

for(i=1;i<=n;i++)

{

for(t=0;t<=n-i;t++)/输出左边空格/

printf("%4c",'');

for(j=0;j<2i-1;j++)

printf("%-4ld",F(j));

printf("\n");

}

getch();

}

long int F(int i)

{

if(i==0||i==1) return i;

else return F(i-1)+F(i-2);

}

确实好多、、很多都是数学问题、、自己想啦、、呵呵、、

欢迎分享,转载请注明来源:表白网

原文地址:https://h5.hunlipic.com/biaobai/4039132.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2024-04-11
下一篇2024-04-11

发表评论

登录后才能评论

评论列表(0条)

    保存