做题小技巧

Posted daibigmonster

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了做题小技巧相关的知识,希望对你有一定的参考价值。

正常的输入

C++:

cin>>

python:

input() 如果用list(input())可以将输入的字符或者数字一个一个分成一个列表

按行输入

C++:

getline(cin,a)

python:

import sys

sys.stdin.readlines():

C++中想要删掉一个string中的空格号

if(!s.empty())
{
       while( (index = s.find(‘ ‘,index)) != string::npos)
       {
            s.erase(index,1);
        }

}

C++

#include <iomanip>
cout << setprecision(1) << fixed << (sum/TIMES) << endl;

以上是关于做题小技巧的主要内容,如果未能解决你的问题,请参考以下文章

ACM 刷题小技巧

做题小感(递归)

做题小心得

刷题小技巧

算法比赛+刷题小技巧总结

面试前的刷题小技巧,大厂offer分分钟到手!