码迷,mamicode.com
首页 > 其他好文 > 详细

做题小技巧

时间:2018-02-27 23:45:54      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:列表   div   nes   while   ase   read   time   end   数字   

正常的输入

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;

做题小技巧

标签:列表   div   nes   while   ase   read   time   end   数字   

原文地址:https://www.cnblogs.com/daibigmonster/p/8480902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!