一些笔试题(C/C++)

时间:2022-01-27 05:52:37

1.there are two variables, don't use if.. else or ?: or switch or other judgement statements,find out the biggest number of the two numbers.

返回2个数中较大的数,不使用if else "?:" 或switch 语句

 // return the biggest number without any judgement statements.
// create by Young
// date 20130707
#include <iostream>
#include<math.h>
using namespace std;
int max(int first_number, int second_number)
{
int max_number=(abs(first_number-second_number)+first_number+second_number)/; //use abs avoid use if else
} int main()
{
int result=max(,);
cout<<"the max number is:"<<result<<endl;
return ;
}

2. swap two numbers without another variable, only use the two number。

交换2个数,只能使用这两个数,不能使用第三个变量。

int a=,b=;
a=a+b;
b=a-b;
a=a-b;

这样做有可能a+b比较大的时候溢出,overflow 不建议这样 可以使用:

int a=,b=;
a=a^b;
b=a^b;
a=a^b;

^ 按位取反

3.字符串逆序

  #include <stdio.h>
#include <string.h>
#include <conio.h>
int main()
{
char str[]="abcdefg";
char temp;
int len=strlen(str);
for(int i=;i<len/;i++)
{
temp=str[i] ;
str[i]=str[len--i];
str[len--i]=temp;
}
printf("%s\n",str);
getch();
return ; }

把字符串第一位和最后一位交换,第二位和倒数第二位交换