91学习

陪伴你每一天!

写函数gettemperature()返回体温

#include<stdio.h>int getTemperature();int main(){ getTemperature(); return 0;}int getTemperature(){ int temperature; printf("please input a temperature:\n"); scanf("%d",&temperature); printf("当前的温度是:%d\n",tempe

输出杜甫的《绝句》

#include <stdio.h>void Poem();int main(){ Poem(); return 0;}void Poem(){ printf("两个黄鹂鸣翠柳\n"); printf("一行白鹭上青天\n"); printf("窗含西岭千秋雪\n"); printf("门泊东吴万里船\n");}

编写函数:做饭,钓鱼,写诗

#include <stdio.h>void Cook();void Fish();void Poem();int main(){ Cook(); Fish(); Poem(); return 0;}void Cook(){ printf("会做饭\n");}void Fish(){ printf("会钓鱼\n");}void Poem(){ printf("会写诗\n");}

经常使用POS机刷卡的一些注意要点

 信用卡发卡量越来越高,现在的信用卡的发行量已经上亿张了,人均拥有0.38张信用卡,可见信用卡在市场上面有多少客户,而每个人的信用卡额度都不一样,小额度的有几百元的,额度大的有的上万甚至几十上百万的额度,很多人使用信用卡经常套现使用,那么如果你经常套现,一不小心有可能会被银行降额甚至封卡,那么信用卡套现需要注意哪些方面呢?首先一定要保持按时还款,千万不能有逾期,如果出现了逾期,那么信用卡有可能会被封卡或者降额,如果实在还不起可以办理分期业务,征信如果有问题对于未来办理贷款和信用卡都会受

如果你刷卡这些注意了,还能不提额吗

平时刷卡的时候,怎么才能养卡提额度,怎么才能让自己的卡额度更高,一下给出部分方法:一、单卡刷卡次数每周大于5次,每月大于20次。每月合理递增或者递减,尽量不要有规律,每月25-30笔最佳。二、刷卡金额要小额结合大额消费,如果都是鸡毛蒜皮的小消费,银行是不会把你优质客户的,经常有大额消费才能证明你的消费水平。三、切忌账单日一出就大额度整数的把额度掏空,基本一掏空也就这一回了,立马会被银行风控。而且三月之后,风控越来越严了,不要作死。四、单次消费最好不超过卡总额的50%,当然额度低的不说,就算全是真

将字符串反过来输出

#include <stdio.h>int  main(){ int i; char String[5]={"live"}; char Reverse[5]={0}; int size=sizeof(String); for(i=0;i<4;i++){ Reverse[size-i-2]=String[i]; } printf("输出源字符串:%s\n",String); printf("反过来的输出字符串:%s\n

判断字符串的长度strlen()函数

#include <stdio.h>#include <string.h>int main(){ char text[50]; printf("请输入一个密码:\n"); scanf("%s",&text); if(strlen(text)==6) printf("输入的密码是6位\n"); else printf("输入的密码不是6位\n"); return 0;}

strupr()函数将小写字母转换成大写字母

#include <stdio.h>#include <string.h>int main(){ char change[20],text[20]; printf("输入一个字符串:\n"); scanf("%s",&text); strcpy(change,text); strupr(change); printf("转换成大写字母的字符串是:%s\n",change); return 0;}

strcmp()字符串比较函数

#include <stdio.h>#include <string.h>int main(){ char user[20]={"exit"}; char ustr[20]; while(strcmp(user,ustr)!=0){ printf("请输入字符串:\n"); gets(ustr); puts(ustr); } return 0;}

strcat()函数,链接字符串

#include <Stdio.h>#include <String.h>int main(){ char str1[30]="sell,sell,sell",str2[30]=" apple"; printf("输出前一句:\n"); puts(str1); printf("输出后一句:\n"); puts(str2); strcat(str1,str2); printf("输出一