【程序人生】IT领域中,一些常识(持续更新)

本文更新日志:

1)20180412,第1版:判断一个字符是否为数字或字母、闰年、保留指定的小数位数;

2)

========

 

C++中,如何判断一个字符是数字或者字母:

// 判断ch是数字,条件是 (ch>='0' && ch<='9')
// 判断ch是字符,条件是 (ch>='A' && ch<='Z'  ||  ch>='a' && ch<='z')

void transfer_01(){
	
	bool is_digit, is_letter;
	for(int i=0; i<len; i++){
		is_digit = (source[i]>='0' && source[i]<='9');
		is_letter = (source[i]>='A' && source[i]<='Z') || (source[i]>='a' && source[i]<='z');
		
		if(is_digit || is_letter){
			source[i] = '1';
		}else{
			source[i] = '0';
		}
	}
}

闰年:

#include<iostream> 
using namespace std;

int main() 
{ 
	int year;
	bool case1, case2;
	while(cin>>year) 
	{
		case1 = (year%4==0 && year%100!=0);
		case2 = (year%400==0);
		if(case1 || case2) 
			cout<<year<<" is leap year."<<endl; 
		else 
			cout<<year<<" is not leap year."<<endl;
		cout<<"========"<<endl;
	}
	
	return 0; 
}

保留几位小数:

ratio = 66.666667
// way-1
#include <iomanip>
cout<<setiosflags(ios::fixed);
cout.precision(2);
cout<<ratio<<endl;

// way-2
#include <stdio.h>
printf("%.2f", ratio);

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值